diff -u -r -N squid-5.8/aclocal.m4 squid-5.9/aclocal.m4 --- squid-5.8/aclocal.m4 2023-02-28 23:01:23.000000000 +1300 +++ squid-5.9/aclocal.m4 2023-05-01 10:35:51.000000000 +1200 @@ -20,6 +20,1170 @@ If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) +# Copyright (C) 2002-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_AUTOMAKE_VERSION(VERSION) +# ---------------------------- +# Automake X.Y traces this macro to ensure aclocal.m4 has been +# generated from the m4 files accompanying Automake X.Y. +# (This private macro should not be called outside this file.) +AC_DEFUN([AM_AUTOMAKE_VERSION], +[am__api_version='1.16' +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to +dnl require some minimum version. Point them to the right macro. +m4_if([$1], [1.16.5], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +]) + +# _AM_AUTOCONF_VERSION(VERSION) +# ----------------------------- +# aclocal traces this macro to find the Autoconf version. +# This is a private macro too. Using m4_define simplifies +# the logic in aclocal, which can simply ignore this definition. +m4_define([_AM_AUTOCONF_VERSION], []) + +# AM_SET_CURRENT_AUTOMAKE_VERSION +# ------------------------------- +# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +[AM_AUTOMAKE_VERSION([1.16.5])dnl +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) + +# AM_AUX_DIR_EXPAND -*- Autoconf -*- + +# Copyright (C) 2001-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +# $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to +# '$srcdir', '$srcdir/..', or '$srcdir/../..'. +# +# Of course, Automake must honor this variable whenever it calls a +# tool from the auxiliary directory. The problem is that $srcdir (and +# therefore $ac_aux_dir as well) can be either absolute or relative, +# depending on how configure is run. This is pretty annoying, since +# it makes $ac_aux_dir quite unusable in subdirectories: in the top +# source directory, any form will work fine, but in subdirectories a +# relative path needs to be adjusted first. +# +# $ac_aux_dir/missing +# fails when called from a subdirectory if $ac_aux_dir is relative +# $top_srcdir/$ac_aux_dir/missing +# fails if $ac_aux_dir is absolute, +# fails when called from a subdirectory in a VPATH build with +# a relative $ac_aux_dir +# +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +# are both prefixed by $srcdir. In an in-source build this is usually +# harmless because $srcdir is '.', but things will broke when you +# start a VPATH build or use an absolute $srcdir. +# +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +# and then we would define $MISSING as +# MISSING="\${SHELL} $am_aux_dir/missing" +# This will work as long as MISSING is not called from configure, because +# unfortunately $(top_srcdir) has no meaning in configure. +# However there are other variables, like CC, which are often used in +# configure, and could therefore not use this "fixed" $ac_aux_dir. +# +# Another solution, used here, is to always expand $ac_aux_dir to an +# absolute PATH. The drawback is that using absolute paths prevent a +# configured tree to be moved without reconfiguration. + +AC_DEFUN([AM_AUX_DIR_EXPAND], +[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl +# Expand $ac_aux_dir to an absolute path. +am_aux_dir=`cd "$ac_aux_dir" && pwd` +]) + +# AM_CONDITIONAL -*- Autoconf -*- + +# Copyright (C) 1997-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_CONDITIONAL(NAME, SHELL-CONDITION) +# ------------------------------------- +# Define a conditional. +AC_DEFUN([AM_CONDITIONAL], +[AC_PREREQ([2.52])dnl + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE])dnl +AC_SUBST([$1_FALSE])dnl +_AM_SUBST_NOTMAKE([$1_TRUE])dnl +_AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl +if $2; then + $1_TRUE= + $1_FALSE='#' +else + $1_TRUE='#' + $1_FALSE= +fi +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) + +# Copyright (C) 1999-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + + +# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be +# written in clear, in which case automake, when reading aclocal.m4, +# will think it sees a *use*, and therefore will trigger all it's +# C support machinery. Also note that it means that autoscan, seeing +# CC etc. in the Makefile, will ask for an AC_PROG_CC use... + + +# _AM_DEPENDENCIES(NAME) +# ---------------------- +# See how the compiler implements dependency checking. +# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". +# We try a few techniques and use that to set a single cache variable. +# +# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was +# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular +# dependency, and given that the user is not expected to run this macro, +# just rely on AC_PROG_CC. +AC_DEFUN([_AM_DEPENDENCIES], +[AC_REQUIRE([AM_SET_DEPDIR])dnl +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +AC_REQUIRE([AM_MAKE_INCLUDE])dnl +AC_REQUIRE([AM_DEP_TRACK])dnl + +m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], + [$1], [CXX], [depcc="$CXX" am_compiler_list=], + [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], + [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], + [$1], [UPC], [depcc="$UPC" am_compiler_list=], + [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], + [depcc="$$1" am_compiler_list=]) + +AC_CACHE_CHECK([dependency style of $depcc], + [am_cv_$1_dependencies_compiler_type], +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named 'D' -- because '-MD' means "put the output + # in D". + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_$1_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi + am__universal=false + m4_case([$1], [CC], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac], + [CXX], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac]) + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with + # Solaris 10 /bin/sh. + echo '/* dummy */' > sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with '-c' and '-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle '-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs. + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # After this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested. + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok '-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_$1_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_$1_dependencies_compiler_type=none +fi +]) +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +AM_CONDITIONAL([am__fastdep$1], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +]) + + +# AM_SET_DEPDIR +# ------------- +# Choose a directory name for dependency files. +# This macro is AC_REQUIREd in _AM_DEPENDENCIES. +AC_DEFUN([AM_SET_DEPDIR], +[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +]) + + +# AM_DEP_TRACK +# ------------ +AC_DEFUN([AM_DEP_TRACK], +[AC_ARG_ENABLE([dependency-tracking], [dnl +AS_HELP_STRING( + [--enable-dependency-tracking], + [do not reject slow dependency extractors]) +AS_HELP_STRING( + [--disable-dependency-tracking], + [speeds up one-time build])]) +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +AC_SUBST([AMDEPBACKSLASH])dnl +_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl +AC_SUBST([am__nodep])dnl +_AM_SUBST_NOTMAKE([am__nodep])dnl +]) + +# Generate code to set up dependency tracking. -*- Autoconf -*- + +# Copyright (C) 1999-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_OUTPUT_DEPENDENCY_COMMANDS +# ------------------------------ +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +[{ + # Older Autoconf quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + # TODO: see whether this extra hack can be removed once we start + # requiring Autoconf 2.70 or later. + AS_CASE([$CONFIG_FILES], + [*\'*], [eval set x "$CONFIG_FILES"], + [*], [set x $CONFIG_FILES]) + shift + # Used to flag and report bootstrapping failures. + am_rc=0 + for am_mf + do + # Strip MF so we end up with the name of the file. + am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile which includes + # dependency-tracking related rules and includes. + # Grep'ing the whole file directly is not great: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ + || continue + am_dirpart=`AS_DIRNAME(["$am_mf"])` + am_filepart=`AS_BASENAME(["$am_mf"])` + AM_RUN_LOG([cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles]) || am_rc=$? + done + if test $am_rc -ne 0; then + AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments + for automatic dependency tracking. If GNU make was not used, consider + re-running the configure script with MAKE="gmake" (or whatever is + necessary). You can also try re-running configure with the + '--disable-dependency-tracking' option to at least be able to build + the package (albeit without support for automatic dependency tracking).]) + fi + AS_UNSET([am_dirpart]) + AS_UNSET([am_filepart]) + AS_UNSET([am_mf]) + AS_UNSET([am_rc]) + rm -f conftest-deps.mk +} +])# _AM_OUTPUT_DEPENDENCY_COMMANDS + + +# AM_OUTPUT_DEPENDENCY_COMMANDS +# ----------------------------- +# This macro should only be invoked once -- use via AC_REQUIRE. +# +# This code is only required when automatic dependency tracking is enabled. +# This creates each '.Po' and '.Plo' makefile fragment that we'll need in +# order to bootstrap the dependency handling code. +AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], +[AC_CONFIG_COMMANDS([depfiles], + [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], + [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])]) + +# Do all the work for Automake. -*- Autoconf -*- + +# Copyright (C) 1996-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This macro actually does too much. Some checks are only needed if +# your package does certain things. But this isn't really a big deal. + +dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. +m4_define([AC_PROG_CC], +m4_defn([AC_PROG_CC]) +[_AM_PROG_CC_C_O +]) + +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +# AM_INIT_AUTOMAKE([OPTIONS]) +# ----------------------------------------------- +# The call with PACKAGE and VERSION arguments is the old style +# call (pre autoconf-2.50), which is being phased out. PACKAGE +# and VERSION should now be passed to AC_INIT and removed from +# the call to AM_INIT_AUTOMAKE. +# We support both call styles for the transition. After +# the next Automake release, Autoconf can make the AC_INIT +# arguments mandatory, and then we can depend on a new Autoconf +# release and drop the old call support. +AC_DEFUN([AM_INIT_AUTOMAKE], +[AC_PREREQ([2.65])dnl +m4_ifdef([_$0_ALREADY_INIT], + [m4_fatal([$0 expanded multiple times +]m4_defn([_$0_ALREADY_INIT]))], + [m4_define([_$0_ALREADY_INIT], m4_expansion_stack)])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[AC_DIAGNOSE([obsolete], + [$0: two- and three-arguments forms are deprecated.]) +m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. +m4_if( + m4_ifset([AC_PACKAGE_NAME], [ok]):m4_ifset([AC_PACKAGE_VERSION], [ok]), + [ok:ok],, + [m4_fatal([AC_INIT should be called with package and version arguments])])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) + AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) +AM_MISSING_PROG([AUTOCONF], [autoconf]) +AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) +AM_MISSING_PROG([AUTOHEADER], [autoheader]) +AM_MISSING_PROG([MAKEINFO], [makeinfo]) +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl +AC_REQUIRE([AC_PROG_MKDIR_P])dnl +# For better backward compatibility. To be removed once Automake 1.9.x +# dies out for good. For more background, see: +# +# +AC_SUBST([mkdir_p], ['$(MKDIR_P)']) +# We need awk for the "check" target (and possibly the TAP driver). The +# system "awk" is bad on some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES([CC])], + [m4_define([AC_PROG_CC], + m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES([CXX])], + [m4_define([AC_PROG_CXX], + m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES([OBJC])], + [m4_define([AC_PROG_OBJC], + m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], + [_AM_DEPENDENCIES([OBJCXX])], + [m4_define([AC_PROG_OBJCXX], + m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl +]) +# Variables for tags utilities; see am/tags.am +if test -z "$CTAGS"; then + CTAGS=ctags +fi +AC_SUBST([CTAGS]) +if test -z "$ETAGS"; then + ETAGS=etags +fi +AC_SUBST([ETAGS]) +if test -z "$CSCOPE"; then + CSCOPE=cscope +fi +AC_SUBST([CSCOPE]) + +AC_REQUIRE([AM_SILENT_RULES])dnl +dnl The testsuite driver may need to know about EXEEXT, so add the +dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This +dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. +AC_CONFIG_COMMANDS_PRE(dnl +[m4_provide_if([_AM_COMPILER_EXEEXT], + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl + +# POSIX will say in a future version that running "rm -f" with no argument +# is OK; and we want to be able to make that assumption in our Makefile +# recipes. So use an aggressive probe to check that the usage we want is +# actually supported "in the wild" to an acceptable degree. +# See automake bug#10828. +# To make any issue more visible, cause the running configure to be aborted +# by default if the 'rm' program in use doesn't match our expectations; the +# user can still override this though. +if rm -f && rm -fr && rm -rf; then : OK; else + cat >&2 <<'END' +Oops! + +Your 'rm' program seems unable to run without file operands specified +on the command line, even when the '-f' option is present. This is contrary +to the behaviour of most rm programs out there, and not conforming with +the upcoming POSIX standard: + +Please tell bug-automake@gnu.org about your system, including the value +of your $PATH and any error possibly output before this message. This +can help us improve future automake versions. + +END + if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then + echo 'Configuration will proceed anyway, since you have set the' >&2 + echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 + echo >&2 + else + cat >&2 <<'END' +Aborting the configuration process, to ensure you take notice of the issue. + +You can download and install GNU coreutils to get an 'rm' implementation +that behaves properly: . + +If you want to complete the configuration process using your problematic +'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM +to "yes", and re-run configure. + +END + AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) + fi +fi +dnl The trailing newline in this macro's definition is deliberate, for +dnl backward compatibility and to allow trailing 'dnl'-style comments +dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. +]) + +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 +dnl mangled by Autoconf and run in a shell conditional statement. +m4_define([_AC_COMPILER_EXEEXT], +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) + +# When config.status generates a header, we must update the stamp-h file. +# This file resides in the same directory as the config header +# that is generated. The stamp files are numbered to have different names. + +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +# loop where config.status creates the headers, so we can generate +# our stamp files there. +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +[# Compute $1's index in $config_headers. +_am_arg=$1 +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) + +# Copyright (C) 2001-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +if test x"${install_sh+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi +AC_SUBST([install_sh])]) + +# Copyright (C) 2003-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# Check whether the underlying file-system supports filenames +# with a leading dot. For instance MS-DOS doesn't. +AC_DEFUN([AM_SET_LEADING_DOT], +[rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) + +# Add --enable-maintainer-mode option to configure. -*- Autoconf -*- +# From Jim Meyering + +# Copyright (C) 1996-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_MAINTAINER_MODE([DEFAULT-MODE]) +# ---------------------------------- +# Control maintainer-specific portions of Makefiles. +# Default is to disable them, unless 'enable' is passed literally. +# For symmetry, 'disable' may be passed as well. Anyway, the user +# can override the default with the --enable/--disable switch. +AC_DEFUN([AM_MAINTAINER_MODE], +[m4_case(m4_default([$1], [disable]), + [enable], [m4_define([am_maintainer_other], [disable])], + [disable], [m4_define([am_maintainer_other], [enable])], + [m4_define([am_maintainer_other], [enable]) + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) +AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) + dnl maintainer-mode's default is 'disable' unless 'enable' is passed + AC_ARG_ENABLE([maintainer-mode], + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], + am_maintainer_other[ make rules and dependencies not useful + (and sometimes confusing) to the casual installer])], + [USE_MAINTAINER_MODE=$enableval], + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) + MAINT=$MAINTAINER_MODE_TRUE + AC_SUBST([MAINT])dnl +] +) + +# Check to see how 'make' treats includes. -*- Autoconf -*- + +# Copyright (C) 2001-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_MAKE_INCLUDE() +# ----------------- +# Check whether make has an 'include' directive that can support all +# the idioms we need for our automatic dependency tracking code. +AC_DEFUN([AM_MAKE_INCLUDE], +[AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive]) +cat > confinc.mk << 'END' +am__doit: + @echo this is the am__doit target >confinc.out +.PHONY: am__doit +END +am__include="#" +am__quote= +# BSD make does it like this. +echo '.include "confinc.mk" # ignored' > confmf.BSD +# Other make implementations (GNU, Solaris 10, AIX) do it like this. +echo 'include confinc.mk # ignored' > confmf.GNU +_am_result=no +for s in GNU BSD; do + AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out]) + AS_CASE([$?:`cat confinc.out 2>/dev/null`], + ['0:this is the am__doit target'], + [AS_CASE([$s], + [BSD], [am__include='.include' am__quote='"'], + [am__include='include' am__quote=''])]) + if test "$am__include" != "#"; then + _am_result="yes ($s style)" + break + fi +done +rm -f confinc.* confmf.* +AC_MSG_RESULT([${_am_result}]) +AC_SUBST([am__include])]) +AC_SUBST([am__quote])]) + +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +# Copyright (C) 1997-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_MISSING_PROG(NAME, PROGRAM) +# ------------------------------ +AC_DEFUN([AM_MISSING_PROG], +[AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) + +# AM_MISSING_HAS_RUN +# ------------------ +# Define MISSING if not defined so far and test if it is modern enough. +# If it is, set am_missing_run to use it, otherwise, to nothing. +AC_DEFUN([AM_MISSING_HAS_RUN], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([missing])dnl +if test x"${MISSING+set}" != xset; then + MISSING="\${SHELL} '$am_aux_dir/missing'" +fi +# Use eval to expand $SHELL +if eval "$MISSING --is-lightweight"; then + am_missing_run="$MISSING " +else + am_missing_run= + AC_MSG_WARN(['missing' script is too old or missing]) +fi +]) + +# Helper functions for option handling. -*- Autoconf -*- + +# Copyright (C) 2001-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +# _AM_SET_OPTION(NAME) +# -------------------- +# Set option NAME. Presently that only means defining a flag for this option. +AC_DEFUN([_AM_SET_OPTION], +[m4_define(_AM_MANGLE_OPTION([$1]), [1])]) + +# _AM_SET_OPTIONS(OPTIONS) +# ------------------------ +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +# ------------------------------------------- +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +AC_DEFUN([_AM_IF_OPTION], +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) + +# Copyright (C) 1999-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_PROG_CC_C_O +# --------------- +# Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC +# to automatically call this. +AC_DEFUN([_AM_PROG_CC_C_O], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([compile])dnl +AC_LANG_PUSH([C])dnl +AC_CACHE_CHECK( + [whether $CC understands -c and -o together], + [am_cv_prog_cc_c_o], + [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) + # Make sure it works both with $CC and with simple cc. + # Following AC_PROG_CC_C_O, we do the test twice because some + # compilers refuse to overwrite an existing .o file with -o, + # though they will create one. + am_cv_prog_cc_c_o=yes + for am_i in 1 2; do + if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ + && test -f conftest2.$ac_objext; then + : OK + else + am_cv_prog_cc_c_o=no + break + fi + done + rm -f core conftest* + unset am_i]) +if test "$am_cv_prog_cc_c_o" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi +AC_LANG_POP([C])]) + +# For backward compatibility. +AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) + +# Copyright (C) 2001-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_RUN_LOG(COMMAND) +# ------------------- +# Run COMMAND, save the exit status in ac_status, and log it. +# (This has been adapted from Autoconf's _AC_RUN_LOG macro.) +AC_DEFUN([AM_RUN_LOG], +[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD + ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + (exit $ac_status); }]) + +# Check to make sure that the build environment is sane. -*- Autoconf -*- + +# Copyright (C) 1996-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_SANITY_CHECK +# --------------- +AC_DEFUN([AM_SANITY_CHECK], +[AC_MSG_CHECKING([whether build environment is sane]) +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[[\\\"\#\$\&\'\`$am_lf]]*) + AC_MSG_ERROR([unsafe absolute working directory name]);; +esac +case $srcdir in + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) + AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; +esac + +# Do 'set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + am_has_slept=no + for am_try in 1 2; do + echo "timestamp, slept: $am_has_slept" > conftest.file + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken + alias in your environment]) + fi + if test "$[2]" = conftest.file || test $am_try -eq 2; then + break + fi + # Just in case. + sleep 1 + am_has_slept=yes + done + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT([yes]) +# If we didn't sleep, we still need to ensure time stamps of config.status and +# generated files are strictly newer. +am_sleep_pid= +if grep 'slept: no' conftest.file >/dev/null 2>&1; then + ( sleep 1 ) & + am_sleep_pid=$! +fi +AC_CONFIG_COMMANDS_PRE( + [AC_MSG_CHECKING([that generated files are newer than configure]) + if test -n "$am_sleep_pid"; then + # Hide warnings about reused PIDs. + wait $am_sleep_pid 2>/dev/null + fi + AC_MSG_RESULT([done])]) +rm -f conftest.file +]) + +# Copyright (C) 2009-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_SILENT_RULES([DEFAULT]) +# -------------------------- +# Enable less verbose build rules; with the default set to DEFAULT +# ("yes" being less verbose, "no" or empty being verbose). +AC_DEFUN([AM_SILENT_RULES], +[AC_ARG_ENABLE([silent-rules], [dnl +AS_HELP_STRING( + [--enable-silent-rules], + [less verbose build output (undo: "make V=1")]) +AS_HELP_STRING( + [--disable-silent-rules], + [verbose build output (undo: "make V=0")])dnl +]) +case $enable_silent_rules in @%:@ ((( + yes) AM_DEFAULT_VERBOSITY=0;; + no) AM_DEFAULT_VERBOSITY=1;; + *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; +esac +dnl +dnl A few 'make' implementations (e.g., NonStop OS and NextStep) +dnl do not support nested variable expansions. +dnl See automake bug#9928 and bug#10237. +am_make=${MAKE-make} +AC_CACHE_CHECK([whether $am_make supports nested variables], + [am_cv_make_support_nested_variables], + [if AS_ECHO([['TRUE=$(BAR$(V)) +BAR0=false +BAR1=true +V=1 +am__doit: + @$(TRUE) +.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then + am_cv_make_support_nested_variables=yes +else + am_cv_make_support_nested_variables=no +fi]) +if test $am_cv_make_support_nested_variables = yes; then + dnl Using '$V' instead of '$(V)' breaks IRIX make. + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi +AC_SUBST([AM_V])dnl +AM_SUBST_NOTMAKE([AM_V])dnl +AC_SUBST([AM_DEFAULT_V])dnl +AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl +AM_BACKSLASH='\' +AC_SUBST([AM_BACKSLASH])dnl +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl +]) + +# Copyright (C) 2001-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_INSTALL_STRIP +# --------------------- +# One issue with vendor 'install' (even GNU) is that you can't +# specify the program used to strip binaries. This is especially +# annoying in cross-compiling environments, where the build's strip +# is unlikely to handle the host's binaries. +# Fortunately install-sh will honor a STRIPPROG variable, so we +# always use install-sh in "make install-strip", and initialize +# STRIPPROG with the value of the STRIP variable (set by the user). +AC_DEFUN([AM_PROG_INSTALL_STRIP], +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using 'strip' when the user +# run "make install-strip". However 'strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the 'STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +# Copyright (C) 2006-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. +# This macro is traced by Automake. +AC_DEFUN([_AM_SUBST_NOTMAKE]) + +# AM_SUBST_NOTMAKE(VARIABLE) +# -------------------------- +# Public sister of _AM_SUBST_NOTMAKE. +AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + +# Check how to create a tarball. -*- Autoconf -*- + +# Copyright (C) 2004-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of 'v7', 'ustar', or 'pax'. +# +# Substitute a variable $(am__tar) that is a command +# writing to stdout a FORMAT-tarball containing the directory +# $tardir. +# tardir=directory && $(am__tar) > result.tar +# +# Substitute a variable $(am__untar) that extract such +# a tarball read from stdin. +# $(am__untar) < result.tar +# +AC_DEFUN([_AM_PROG_TAR], +[# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AC_SUBST([AMTAR], ['$${TAR-tar}']) + +# We'll loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' + +m4_if([$1], [v7], + [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], + + [m4_case([$1], + [ustar], + [# The POSIX 1988 'ustar' format is defined with fixed-size fields. + # There is notably a 21 bits limit for the UID and the GID. In fact, + # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 + # and bug#13588). + am_max_uid=2097151 # 2^21 - 1 + am_max_gid=$am_max_uid + # The $UID and $GID variables are not portable, so we need to resort + # to the POSIX-mandated id(1) utility. Errors in the 'id' calls + # below are definitely unexpected, so allow the users to see them + # (that is, avoid stderr redirection). + am_uid=`id -u || echo unknown` + am_gid=`id -g || echo unknown` + AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) + if test $am_uid -le $am_max_uid; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + _am_tools=none + fi + AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) + if test $am_gid -le $am_max_gid; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + _am_tools=none + fi], + + [pax], + [], + + [m4_fatal([Unknown tar format])]) + + AC_MSG_CHECKING([how to create a $1 tar archive]) + + # Go ahead even if we have the value already cached. We do so because we + # need to set the values for the 'am__tar' and 'am__untar' variables. + _am_tools=${am_cv_prog_tar_$1-$_am_tools} + + for _am_tool in $_am_tools; do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works. + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar /dev/null 2>&1 && break + fi + done + rm -rf conftest.dir + + AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) + AC_MSG_RESULT([$am_cv_prog_tar_$1])]) + +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) # _AM_PROG_TAR + # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996-2001, 2003-2019, 2021-2022 Free Software @@ -10097,1167 +11261,3 @@ m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) -# Copyright (C) 2002-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_AUTOMAKE_VERSION(VERSION) -# ---------------------------- -# Automake X.Y traces this macro to ensure aclocal.m4 has been -# generated from the m4 files accompanying Automake X.Y. -# (This private macro should not be called outside this file.) -AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.16' -dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to -dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.16.5], [], - [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl -]) - -# _AM_AUTOCONF_VERSION(VERSION) -# ----------------------------- -# aclocal traces this macro to find the Autoconf version. -# This is a private macro too. Using m4_define simplifies -# the logic in aclocal, which can simply ignore this definition. -m4_define([_AM_AUTOCONF_VERSION], []) - -# AM_SET_CURRENT_AUTOMAKE_VERSION -# ------------------------------- -# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. -# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. -AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.16.5])dnl -m4_ifndef([AC_AUTOCONF_VERSION], - [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) - -# AM_AUX_DIR_EXPAND -*- Autoconf -*- - -# Copyright (C) 2001-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets -# $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to -# '$srcdir', '$srcdir/..', or '$srcdir/../..'. -# -# Of course, Automake must honor this variable whenever it calls a -# tool from the auxiliary directory. The problem is that $srcdir (and -# therefore $ac_aux_dir as well) can be either absolute or relative, -# depending on how configure is run. This is pretty annoying, since -# it makes $ac_aux_dir quite unusable in subdirectories: in the top -# source directory, any form will work fine, but in subdirectories a -# relative path needs to be adjusted first. -# -# $ac_aux_dir/missing -# fails when called from a subdirectory if $ac_aux_dir is relative -# $top_srcdir/$ac_aux_dir/missing -# fails if $ac_aux_dir is absolute, -# fails when called from a subdirectory in a VPATH build with -# a relative $ac_aux_dir -# -# The reason of the latter failure is that $top_srcdir and $ac_aux_dir -# are both prefixed by $srcdir. In an in-source build this is usually -# harmless because $srcdir is '.', but things will broke when you -# start a VPATH build or use an absolute $srcdir. -# -# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, -# iff we strip the leading $srcdir from $ac_aux_dir. That would be: -# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` -# and then we would define $MISSING as -# MISSING="\${SHELL} $am_aux_dir/missing" -# This will work as long as MISSING is not called from configure, because -# unfortunately $(top_srcdir) has no meaning in configure. -# However there are other variables, like CC, which are often used in -# configure, and could therefore not use this "fixed" $ac_aux_dir. -# -# Another solution, used here, is to always expand $ac_aux_dir to an -# absolute PATH. The drawback is that using absolute paths prevent a -# configured tree to be moved without reconfiguration. - -AC_DEFUN([AM_AUX_DIR_EXPAND], -[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl -# Expand $ac_aux_dir to an absolute path. -am_aux_dir=`cd "$ac_aux_dir" && pwd` -]) - -# AM_CONDITIONAL -*- Autoconf -*- - -# Copyright (C) 1997-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_CONDITIONAL(NAME, SHELL-CONDITION) -# ------------------------------------- -# Define a conditional. -AC_DEFUN([AM_CONDITIONAL], -[AC_PREREQ([2.52])dnl - m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], - [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl -AC_SUBST([$1_TRUE])dnl -AC_SUBST([$1_FALSE])dnl -_AM_SUBST_NOTMAKE([$1_TRUE])dnl -_AM_SUBST_NOTMAKE([$1_FALSE])dnl -m4_define([_AM_COND_VALUE_$1], [$2])dnl -if $2; then - $1_TRUE= - $1_FALSE='#' -else - $1_TRUE='#' - $1_FALSE= -fi -AC_CONFIG_COMMANDS_PRE( -[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then - AC_MSG_ERROR([[conditional "$1" was never defined. -Usually this means the macro was only invoked conditionally.]]) -fi])]) - -# Copyright (C) 1999-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - - -# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be -# written in clear, in which case automake, when reading aclocal.m4, -# will think it sees a *use*, and therefore will trigger all it's -# C support machinery. Also note that it means that autoscan, seeing -# CC etc. in the Makefile, will ask for an AC_PROG_CC use... - - -# _AM_DEPENDENCIES(NAME) -# ---------------------- -# See how the compiler implements dependency checking. -# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". -# We try a few techniques and use that to set a single cache variable. -# -# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was -# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular -# dependency, and given that the user is not expected to run this macro, -# just rely on AC_PROG_CC. -AC_DEFUN([_AM_DEPENDENCIES], -[AC_REQUIRE([AM_SET_DEPDIR])dnl -AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl -AC_REQUIRE([AM_MAKE_INCLUDE])dnl -AC_REQUIRE([AM_DEP_TRACK])dnl - -m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], - [$1], [CXX], [depcc="$CXX" am_compiler_list=], - [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], - [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], - [$1], [UPC], [depcc="$UPC" am_compiler_list=], - [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], - [depcc="$$1" am_compiler_list=]) - -AC_CACHE_CHECK([dependency style of $depcc], - [am_cv_$1_dependencies_compiler_type], -[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named 'D' -- because '-MD' means "put the output - # in D". - rm -rf conftest.dir - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_$1_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` - fi - am__universal=false - m4_case([$1], [CC], - [case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac], - [CXX], - [case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac]) - - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with - # Solaris 10 /bin/sh. - echo '/* dummy */' > sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - # We check with '-c' and '-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle '-M -o', and we need to detect this. Also, some Intel - # versions had trouble with output in subdirs. - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - nosideeffect) - # After this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested. - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - msvc7 | msvc7msys | msvisualcpp | msvcmsys) - # This compiler won't grok '-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep $am__obj sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_$1_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_$1_dependencies_compiler_type=none -fi -]) -AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) -AM_CONDITIONAL([am__fastdep$1], [ - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) -]) - - -# AM_SET_DEPDIR -# ------------- -# Choose a directory name for dependency files. -# This macro is AC_REQUIREd in _AM_DEPENDENCIES. -AC_DEFUN([AM_SET_DEPDIR], -[AC_REQUIRE([AM_SET_LEADING_DOT])dnl -AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl -]) - - -# AM_DEP_TRACK -# ------------ -AC_DEFUN([AM_DEP_TRACK], -[AC_ARG_ENABLE([dependency-tracking], [dnl -AS_HELP_STRING( - [--enable-dependency-tracking], - [do not reject slow dependency extractors]) -AS_HELP_STRING( - [--disable-dependency-tracking], - [speeds up one-time build])]) -if test "x$enable_dependency_tracking" != xno; then - am_depcomp="$ac_aux_dir/depcomp" - AMDEPBACKSLASH='\' - am__nodep='_no' -fi -AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) -AC_SUBST([AMDEPBACKSLASH])dnl -_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl -AC_SUBST([am__nodep])dnl -_AM_SUBST_NOTMAKE([am__nodep])dnl -]) - -# Generate code to set up dependency tracking. -*- Autoconf -*- - -# Copyright (C) 1999-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# _AM_OUTPUT_DEPENDENCY_COMMANDS -# ------------------------------ -AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], -[{ - # Older Autoconf quotes --file arguments for eval, but not when files - # are listed without --file. Let's play safe and only enable the eval - # if we detect the quoting. - # TODO: see whether this extra hack can be removed once we start - # requiring Autoconf 2.70 or later. - AS_CASE([$CONFIG_FILES], - [*\'*], [eval set x "$CONFIG_FILES"], - [*], [set x $CONFIG_FILES]) - shift - # Used to flag and report bootstrapping failures. - am_rc=0 - for am_mf - do - # Strip MF so we end up with the name of the file. - am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile which includes - # dependency-tracking related rules and includes. - # Grep'ing the whole file directly is not great: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ - || continue - am_dirpart=`AS_DIRNAME(["$am_mf"])` - am_filepart=`AS_BASENAME(["$am_mf"])` - AM_RUN_LOG([cd "$am_dirpart" \ - && sed -e '/# am--include-marker/d' "$am_filepart" \ - | $MAKE -f - am--depfiles]) || am_rc=$? - done - if test $am_rc -ne 0; then - AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments - for automatic dependency tracking. If GNU make was not used, consider - re-running the configure script with MAKE="gmake" (or whatever is - necessary). You can also try re-running configure with the - '--disable-dependency-tracking' option to at least be able to build - the package (albeit without support for automatic dependency tracking).]) - fi - AS_UNSET([am_dirpart]) - AS_UNSET([am_filepart]) - AS_UNSET([am_mf]) - AS_UNSET([am_rc]) - rm -f conftest-deps.mk -} -])# _AM_OUTPUT_DEPENDENCY_COMMANDS - - -# AM_OUTPUT_DEPENDENCY_COMMANDS -# ----------------------------- -# This macro should only be invoked once -- use via AC_REQUIRE. -# -# This code is only required when automatic dependency tracking is enabled. -# This creates each '.Po' and '.Plo' makefile fragment that we'll need in -# order to bootstrap the dependency handling code. -AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], -[AC_CONFIG_COMMANDS([depfiles], - [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], - [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])]) - -# Do all the work for Automake. -*- Autoconf -*- - -# Copyright (C) 1996-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This macro actually does too much. Some checks are only needed if -# your package does certain things. But this isn't really a big deal. - -dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. -m4_define([AC_PROG_CC], -m4_defn([AC_PROG_CC]) -[_AM_PROG_CC_C_O -]) - -# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) -# AM_INIT_AUTOMAKE([OPTIONS]) -# ----------------------------------------------- -# The call with PACKAGE and VERSION arguments is the old style -# call (pre autoconf-2.50), which is being phased out. PACKAGE -# and VERSION should now be passed to AC_INIT and removed from -# the call to AM_INIT_AUTOMAKE. -# We support both call styles for the transition. After -# the next Automake release, Autoconf can make the AC_INIT -# arguments mandatory, and then we can depend on a new Autoconf -# release and drop the old call support. -AC_DEFUN([AM_INIT_AUTOMAKE], -[AC_PREREQ([2.65])dnl -m4_ifdef([_$0_ALREADY_INIT], - [m4_fatal([$0 expanded multiple times -]m4_defn([_$0_ALREADY_INIT]))], - [m4_define([_$0_ALREADY_INIT], m4_expansion_stack)])dnl -dnl Autoconf wants to disallow AM_ names. We explicitly allow -dnl the ones we care about. -m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl -AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl -AC_REQUIRE([AC_PROG_INSTALL])dnl -if test "`cd $srcdir && pwd`" != "`pwd`"; then - # Use -I$(srcdir) only when $(srcdir) != ., so that make's output - # is not polluted with repeated "-I." - AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl - # test to see if srcdir already configured - if test -f $srcdir/config.status; then - AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) - fi -fi - -# test whether we have cygpath -if test -z "$CYGPATH_W"; then - if (cygpath --version) >/dev/null 2>/dev/null; then - CYGPATH_W='cygpath -w' - else - CYGPATH_W=echo - fi -fi -AC_SUBST([CYGPATH_W]) - -# Define the identity of the package. -dnl Distinguish between old-style and new-style calls. -m4_ifval([$2], -[AC_DIAGNOSE([obsolete], - [$0: two- and three-arguments forms are deprecated.]) -m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl - AC_SUBST([PACKAGE], [$1])dnl - AC_SUBST([VERSION], [$2])], -[_AM_SET_OPTIONS([$1])dnl -dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. -m4_if( - m4_ifset([AC_PACKAGE_NAME], [ok]):m4_ifset([AC_PACKAGE_VERSION], [ok]), - [ok:ok],, - [m4_fatal([AC_INIT should be called with package and version arguments])])dnl - AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl - AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl - -_AM_IF_OPTION([no-define],, -[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) - AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl - -# Some tools Automake needs. -AC_REQUIRE([AM_SANITY_CHECK])dnl -AC_REQUIRE([AC_ARG_PROGRAM])dnl -AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) -AM_MISSING_PROG([AUTOCONF], [autoconf]) -AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) -AM_MISSING_PROG([AUTOHEADER], [autoheader]) -AM_MISSING_PROG([MAKEINFO], [makeinfo]) -AC_REQUIRE([AM_PROG_INSTALL_SH])dnl -AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl -AC_REQUIRE([AC_PROG_MKDIR_P])dnl -# For better backward compatibility. To be removed once Automake 1.9.x -# dies out for good. For more background, see: -# -# -AC_SUBST([mkdir_p], ['$(MKDIR_P)']) -# We need awk for the "check" target (and possibly the TAP driver). The -# system "awk" is bad on some platforms. -AC_REQUIRE([AC_PROG_AWK])dnl -AC_REQUIRE([AC_PROG_MAKE_SET])dnl -AC_REQUIRE([AM_SET_LEADING_DOT])dnl -_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], - [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], - [_AM_PROG_TAR([v7])])]) -_AM_IF_OPTION([no-dependencies],, -[AC_PROVIDE_IFELSE([AC_PROG_CC], - [_AM_DEPENDENCIES([CC])], - [m4_define([AC_PROG_CC], - m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl -AC_PROVIDE_IFELSE([AC_PROG_CXX], - [_AM_DEPENDENCIES([CXX])], - [m4_define([AC_PROG_CXX], - m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl -AC_PROVIDE_IFELSE([AC_PROG_OBJC], - [_AM_DEPENDENCIES([OBJC])], - [m4_define([AC_PROG_OBJC], - m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl -AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], - [_AM_DEPENDENCIES([OBJCXX])], - [m4_define([AC_PROG_OBJCXX], - m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl -]) -# Variables for tags utilities; see am/tags.am -if test -z "$CTAGS"; then - CTAGS=ctags -fi -AC_SUBST([CTAGS]) -if test -z "$ETAGS"; then - ETAGS=etags -fi -AC_SUBST([ETAGS]) -if test -z "$CSCOPE"; then - CSCOPE=cscope -fi -AC_SUBST([CSCOPE]) - -AC_REQUIRE([AM_SILENT_RULES])dnl -dnl The testsuite driver may need to know about EXEEXT, so add the -dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This -dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. -AC_CONFIG_COMMANDS_PRE(dnl -[m4_provide_if([_AM_COMPILER_EXEEXT], - [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl - -# POSIX will say in a future version that running "rm -f" with no argument -# is OK; and we want to be able to make that assumption in our Makefile -# recipes. So use an aggressive probe to check that the usage we want is -# actually supported "in the wild" to an acceptable degree. -# See automake bug#10828. -# To make any issue more visible, cause the running configure to be aborted -# by default if the 'rm' program in use doesn't match our expectations; the -# user can still override this though. -if rm -f && rm -fr && rm -rf; then : OK; else - cat >&2 <<'END' -Oops! - -Your 'rm' program seems unable to run without file operands specified -on the command line, even when the '-f' option is present. This is contrary -to the behaviour of most rm programs out there, and not conforming with -the upcoming POSIX standard: - -Please tell bug-automake@gnu.org about your system, including the value -of your $PATH and any error possibly output before this message. This -can help us improve future automake versions. - -END - if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then - echo 'Configuration will proceed anyway, since you have set the' >&2 - echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 - echo >&2 - else - cat >&2 <<'END' -Aborting the configuration process, to ensure you take notice of the issue. - -You can download and install GNU coreutils to get an 'rm' implementation -that behaves properly: . - -If you want to complete the configuration process using your problematic -'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM -to "yes", and re-run configure. - -END - AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) - fi -fi -dnl The trailing newline in this macro's definition is deliberate, for -dnl backward compatibility and to allow trailing 'dnl'-style comments -dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. -]) - -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 -dnl mangled by Autoconf and run in a shell conditional statement. -m4_define([_AC_COMPILER_EXEEXT], -m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) - -# When config.status generates a header, we must update the stamp-h file. -# This file resides in the same directory as the config header -# that is generated. The stamp files are numbered to have different names. - -# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the -# loop where config.status creates the headers, so we can generate -# our stamp files there. -AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], -[# Compute $1's index in $config_headers. -_am_arg=$1 -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $_am_arg | $_am_arg:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) - -# Copyright (C) 2001-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_PROG_INSTALL_SH -# ------------------ -# Define $install_sh. -AC_DEFUN([AM_PROG_INSTALL_SH], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -if test x"${install_sh+set}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; - *) - install_sh="\${SHELL} $am_aux_dir/install-sh" - esac -fi -AC_SUBST([install_sh])]) - -# Copyright (C) 2003-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# Check whether the underlying file-system supports filenames -# with a leading dot. For instance MS-DOS doesn't. -AC_DEFUN([AM_SET_LEADING_DOT], -[rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null -AC_SUBST([am__leading_dot])]) - -# Add --enable-maintainer-mode option to configure. -*- Autoconf -*- -# From Jim Meyering - -# Copyright (C) 1996-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_MAINTAINER_MODE([DEFAULT-MODE]) -# ---------------------------------- -# Control maintainer-specific portions of Makefiles. -# Default is to disable them, unless 'enable' is passed literally. -# For symmetry, 'disable' may be passed as well. Anyway, the user -# can override the default with the --enable/--disable switch. -AC_DEFUN([AM_MAINTAINER_MODE], -[m4_case(m4_default([$1], [disable]), - [enable], [m4_define([am_maintainer_other], [disable])], - [disable], [m4_define([am_maintainer_other], [enable])], - [m4_define([am_maintainer_other], [enable]) - m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) -AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) - dnl maintainer-mode's default is 'disable' unless 'enable' is passed - AC_ARG_ENABLE([maintainer-mode], - [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], - am_maintainer_other[ make rules and dependencies not useful - (and sometimes confusing) to the casual installer])], - [USE_MAINTAINER_MODE=$enableval], - [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) - AC_MSG_RESULT([$USE_MAINTAINER_MODE]) - AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) - MAINT=$MAINTAINER_MODE_TRUE - AC_SUBST([MAINT])dnl -] -) - -# Check to see how 'make' treats includes. -*- Autoconf -*- - -# Copyright (C) 2001-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_MAKE_INCLUDE() -# ----------------- -# Check whether make has an 'include' directive that can support all -# the idioms we need for our automatic dependency tracking code. -AC_DEFUN([AM_MAKE_INCLUDE], -[AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive]) -cat > confinc.mk << 'END' -am__doit: - @echo this is the am__doit target >confinc.out -.PHONY: am__doit -END -am__include="#" -am__quote= -# BSD make does it like this. -echo '.include "confinc.mk" # ignored' > confmf.BSD -# Other make implementations (GNU, Solaris 10, AIX) do it like this. -echo 'include confinc.mk # ignored' > confmf.GNU -_am_result=no -for s in GNU BSD; do - AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out]) - AS_CASE([$?:`cat confinc.out 2>/dev/null`], - ['0:this is the am__doit target'], - [AS_CASE([$s], - [BSD], [am__include='.include' am__quote='"'], - [am__include='include' am__quote=''])]) - if test "$am__include" != "#"; then - _am_result="yes ($s style)" - break - fi -done -rm -f confinc.* confmf.* -AC_MSG_RESULT([${_am_result}]) -AC_SUBST([am__include])]) -AC_SUBST([am__quote])]) - -# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- - -# Copyright (C) 1997-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_MISSING_PROG(NAME, PROGRAM) -# ------------------------------ -AC_DEFUN([AM_MISSING_PROG], -[AC_REQUIRE([AM_MISSING_HAS_RUN]) -$1=${$1-"${am_missing_run}$2"} -AC_SUBST($1)]) - -# AM_MISSING_HAS_RUN -# ------------------ -# Define MISSING if not defined so far and test if it is modern enough. -# If it is, set am_missing_run to use it, otherwise, to nothing. -AC_DEFUN([AM_MISSING_HAS_RUN], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -AC_REQUIRE_AUX_FILE([missing])dnl -if test x"${MISSING+set}" != xset; then - MISSING="\${SHELL} '$am_aux_dir/missing'" -fi -# Use eval to expand $SHELL -if eval "$MISSING --is-lightweight"; then - am_missing_run="$MISSING " -else - am_missing_run= - AC_MSG_WARN(['missing' script is too old or missing]) -fi -]) - -# Helper functions for option handling. -*- Autoconf -*- - -# Copyright (C) 2001-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# _AM_MANGLE_OPTION(NAME) -# ----------------------- -AC_DEFUN([_AM_MANGLE_OPTION], -[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) - -# _AM_SET_OPTION(NAME) -# -------------------- -# Set option NAME. Presently that only means defining a flag for this option. -AC_DEFUN([_AM_SET_OPTION], -[m4_define(_AM_MANGLE_OPTION([$1]), [1])]) - -# _AM_SET_OPTIONS(OPTIONS) -# ------------------------ -# OPTIONS is a space-separated list of Automake options. -AC_DEFUN([_AM_SET_OPTIONS], -[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) - -# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) -# ------------------------------------------- -# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. -AC_DEFUN([_AM_IF_OPTION], -[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) - -# Copyright (C) 1999-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# _AM_PROG_CC_C_O -# --------------- -# Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC -# to automatically call this. -AC_DEFUN([_AM_PROG_CC_C_O], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -AC_REQUIRE_AUX_FILE([compile])dnl -AC_LANG_PUSH([C])dnl -AC_CACHE_CHECK( - [whether $CC understands -c and -o together], - [am_cv_prog_cc_c_o], - [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) - # Make sure it works both with $CC and with simple cc. - # Following AC_PROG_CC_C_O, we do the test twice because some - # compilers refuse to overwrite an existing .o file with -o, - # though they will create one. - am_cv_prog_cc_c_o=yes - for am_i in 1 2; do - if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ - && test -f conftest2.$ac_objext; then - : OK - else - am_cv_prog_cc_c_o=no - break - fi - done - rm -f core conftest* - unset am_i]) -if test "$am_cv_prog_cc_c_o" != yes; then - # Losing compiler, so override with the script. - # FIXME: It is wrong to rewrite CC. - # But if we don't then we get into trouble of one sort or another. - # A longer-term fix would be to have automake use am__CC in this case, - # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" - CC="$am_aux_dir/compile $CC" -fi -AC_LANG_POP([C])]) - -# For backward compatibility. -AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) - -# Copyright (C) 2001-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_RUN_LOG(COMMAND) -# ------------------- -# Run COMMAND, save the exit status in ac_status, and log it. -# (This has been adapted from Autoconf's _AC_RUN_LOG macro.) -AC_DEFUN([AM_RUN_LOG], -[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD - ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - (exit $ac_status); }]) - -# Check to make sure that the build environment is sane. -*- Autoconf -*- - -# Copyright (C) 1996-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_SANITY_CHECK -# --------------- -AC_DEFUN([AM_SANITY_CHECK], -[AC_MSG_CHECKING([whether build environment is sane]) -# Reject unsafe characters in $srcdir or the absolute working directory -# name. Accept space and tab only in the latter. -am_lf=' -' -case `pwd` in - *[[\\\"\#\$\&\'\`$am_lf]]*) - AC_MSG_ERROR([unsafe absolute working directory name]);; -esac -case $srcdir in - *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) - AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; -esac - -# Do 'set' in a subshell so we don't clobber the current shell's -# arguments. Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( - am_has_slept=no - for am_try in 1 2; do - echo "timestamp, slept: $am_has_slept" > conftest.file - set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` - if test "$[*]" = "X"; then - # -L didn't work. - set X `ls -t "$srcdir/configure" conftest.file` - fi - if test "$[*]" != "X $srcdir/configure conftest.file" \ - && test "$[*]" != "X conftest.file $srcdir/configure"; then - - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken - alias in your environment]) - fi - if test "$[2]" = conftest.file || test $am_try -eq 2; then - break - fi - # Just in case. - sleep 1 - am_has_slept=yes - done - test "$[2]" = conftest.file - ) -then - # Ok. - : -else - AC_MSG_ERROR([newly created file is older than distributed files! -Check your system clock]) -fi -AC_MSG_RESULT([yes]) -# If we didn't sleep, we still need to ensure time stamps of config.status and -# generated files are strictly newer. -am_sleep_pid= -if grep 'slept: no' conftest.file >/dev/null 2>&1; then - ( sleep 1 ) & - am_sleep_pid=$! -fi -AC_CONFIG_COMMANDS_PRE( - [AC_MSG_CHECKING([that generated files are newer than configure]) - if test -n "$am_sleep_pid"; then - # Hide warnings about reused PIDs. - wait $am_sleep_pid 2>/dev/null - fi - AC_MSG_RESULT([done])]) -rm -f conftest.file -]) - -# Copyright (C) 2009-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_SILENT_RULES([DEFAULT]) -# -------------------------- -# Enable less verbose build rules; with the default set to DEFAULT -# ("yes" being less verbose, "no" or empty being verbose). -AC_DEFUN([AM_SILENT_RULES], -[AC_ARG_ENABLE([silent-rules], [dnl -AS_HELP_STRING( - [--enable-silent-rules], - [less verbose build output (undo: "make V=1")]) -AS_HELP_STRING( - [--disable-silent-rules], - [verbose build output (undo: "make V=0")])dnl -]) -case $enable_silent_rules in @%:@ ((( - yes) AM_DEFAULT_VERBOSITY=0;; - no) AM_DEFAULT_VERBOSITY=1;; - *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; -esac -dnl -dnl A few 'make' implementations (e.g., NonStop OS and NextStep) -dnl do not support nested variable expansions. -dnl See automake bug#9928 and bug#10237. -am_make=${MAKE-make} -AC_CACHE_CHECK([whether $am_make supports nested variables], - [am_cv_make_support_nested_variables], - [if AS_ECHO([['TRUE=$(BAR$(V)) -BAR0=false -BAR1=true -V=1 -am__doit: - @$(TRUE) -.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then - am_cv_make_support_nested_variables=yes -else - am_cv_make_support_nested_variables=no -fi]) -if test $am_cv_make_support_nested_variables = yes; then - dnl Using '$V' instead of '$(V)' breaks IRIX make. - AM_V='$(V)' - AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -else - AM_V=$AM_DEFAULT_VERBOSITY - AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -fi -AC_SUBST([AM_V])dnl -AM_SUBST_NOTMAKE([AM_V])dnl -AC_SUBST([AM_DEFAULT_V])dnl -AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl -AC_SUBST([AM_DEFAULT_VERBOSITY])dnl -AM_BACKSLASH='\' -AC_SUBST([AM_BACKSLASH])dnl -_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl -]) - -# Copyright (C) 2001-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_PROG_INSTALL_STRIP -# --------------------- -# One issue with vendor 'install' (even GNU) is that you can't -# specify the program used to strip binaries. This is especially -# annoying in cross-compiling environments, where the build's strip -# is unlikely to handle the host's binaries. -# Fortunately install-sh will honor a STRIPPROG variable, so we -# always use install-sh in "make install-strip", and initialize -# STRIPPROG with the value of the STRIP variable (set by the user). -AC_DEFUN([AM_PROG_INSTALL_STRIP], -[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl -# Installed binaries are usually stripped using 'strip' when the user -# run "make install-strip". However 'strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the 'STRIP' environment variable to overrule this program. -dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. -if test "$cross_compiling" != no; then - AC_CHECK_TOOL([STRIP], [strip], :) -fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" -AC_SUBST([INSTALL_STRIP_PROGRAM])]) - -# Copyright (C) 2006-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# _AM_SUBST_NOTMAKE(VARIABLE) -# --------------------------- -# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. -# This macro is traced by Automake. -AC_DEFUN([_AM_SUBST_NOTMAKE]) - -# AM_SUBST_NOTMAKE(VARIABLE) -# -------------------------- -# Public sister of _AM_SUBST_NOTMAKE. -AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) - -# Check how to create a tarball. -*- Autoconf -*- - -# Copyright (C) 2004-2021 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# _AM_PROG_TAR(FORMAT) -# -------------------- -# Check how to create a tarball in format FORMAT. -# FORMAT should be one of 'v7', 'ustar', or 'pax'. -# -# Substitute a variable $(am__tar) that is a command -# writing to stdout a FORMAT-tarball containing the directory -# $tardir. -# tardir=directory && $(am__tar) > result.tar -# -# Substitute a variable $(am__untar) that extract such -# a tarball read from stdin. -# $(am__untar) < result.tar -# -AC_DEFUN([_AM_PROG_TAR], -[# Always define AMTAR for backward compatibility. Yes, it's still used -# in the wild :-( We should find a proper way to deprecate it ... -AC_SUBST([AMTAR], ['$${TAR-tar}']) - -# We'll loop over all known methods to create a tar archive until one works. -_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' - -m4_if([$1], [v7], - [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], - - [m4_case([$1], - [ustar], - [# The POSIX 1988 'ustar' format is defined with fixed-size fields. - # There is notably a 21 bits limit for the UID and the GID. In fact, - # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 - # and bug#13588). - am_max_uid=2097151 # 2^21 - 1 - am_max_gid=$am_max_uid - # The $UID and $GID variables are not portable, so we need to resort - # to the POSIX-mandated id(1) utility. Errors in the 'id' calls - # below are definitely unexpected, so allow the users to see them - # (that is, avoid stderr redirection). - am_uid=`id -u || echo unknown` - am_gid=`id -g || echo unknown` - AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) - if test $am_uid -le $am_max_uid; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - _am_tools=none - fi - AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) - if test $am_gid -le $am_max_gid; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - _am_tools=none - fi], - - [pax], - [], - - [m4_fatal([Unknown tar format])]) - - AC_MSG_CHECKING([how to create a $1 tar archive]) - - # Go ahead even if we have the value already cached. We do so because we - # need to set the values for the 'am__tar' and 'am__untar' variables. - _am_tools=${am_cv_prog_tar_$1-$_am_tools} - - for _am_tool in $_am_tools; do - case $_am_tool in - gnutar) - for _am_tar in tar gnutar gtar; do - AM_RUN_LOG([$_am_tar --version]) && break - done - am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' - am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' - am__untar="$_am_tar -xf -" - ;; - plaintar) - # Must skip GNU tar: if it does not support --format= it doesn't create - # ustar tarball either. - (tar --version) >/dev/null 2>&1 && continue - am__tar='tar chf - "$$tardir"' - am__tar_='tar chf - "$tardir"' - am__untar='tar xf -' - ;; - pax) - am__tar='pax -L -x $1 -w "$$tardir"' - am__tar_='pax -L -x $1 -w "$tardir"' - am__untar='pax -r' - ;; - cpio) - am__tar='find "$$tardir" -print | cpio -o -H $1 -L' - am__tar_='find "$tardir" -print | cpio -o -H $1 -L' - am__untar='cpio -i -H $1 -d' - ;; - none) - am__tar=false - am__tar_=false - am__untar=false - ;; - esac - - # If the value was cached, stop now. We just wanted to have am__tar - # and am__untar set. - test -n "${am_cv_prog_tar_$1}" && break - - # tar/untar a dummy directory, and stop if the command works. - rm -rf conftest.dir - mkdir conftest.dir - echo GrepMe > conftest.dir/file - AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) - rm -rf conftest.dir - if test -s conftest.tar; then - AM_RUN_LOG([$am__untar /dev/null 2>&1 && break - fi - done - rm -rf conftest.dir - - AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) - AC_MSG_RESULT([$am_cv_prog_tar_$1])]) - -AC_SUBST([am__tar]) -AC_SUBST([am__untar]) -]) # _AM_PROG_TAR - diff -u -r -N squid-5.8/bootstrap.sh squid-5.9/bootstrap.sh --- squid-5.8/bootstrap.sh 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/bootstrap.sh 2023-05-01 10:29:35.000000000 +1200 @@ -50,7 +50,7 @@ done if [ "x$found" = "xNOT_FOUND" ]; then echo "WARNING: Cannot find $tool version $versions" >&2 - echo "Trying `$tool --version | head -1`" >&2 + echo "Trying `$tool --version 2>&1 | head -1`" >&2 found="" fi echo $found @@ -72,7 +72,7 @@ if "$@"; then true # Everything OK else - echo "$1 failed" + echo "$1 failed" >&2 echo "Autotool bootstrapping failed. You will need to investigate and correct" ; echo "before you can develop on this source tree" exit 1 diff -u -r -N squid-5.8/ChangeLog squid-5.9/ChangeLog --- squid-5.8/ChangeLog 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/ChangeLog 2023-05-01 10:29:35.000000000 +1200 @@ -1,3 +1,9 @@ +Changes in squid-5.9 (30 Apr 2023): + + - Improve reply_body_max_size matching accuracy + - ... and some documentation changes + - ... and many portability fixes + Changes in squid-5.8 (28 Feb 2023): - Bug 5162: mgr:index URL do not produce MGR_INDEX template diff -u -r -N squid-5.8/compat/GnuRegex.c squid-5.9/compat/GnuRegex.c --- squid-5.8/compat/GnuRegex.c 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/compat/GnuRegex.c 2023-05-01 10:29:35.000000000 +1200 @@ -2297,14 +2297,8 @@ * the pattern buffer. * * Returns 0 if we succeed, -2 if an internal error. */ -#ifdef STDC_HEADERS int re_compile_fastmap(struct re_pattern_buffer *bufp) -#else -int -re_compile_fastmap(bufp) -struct re_pattern_buffer *bufp; -#endif { int j, k; fail_stack_type fail_stack; @@ -2531,11 +2525,7 @@ * doesn't let you say where to stop matching. */ static int -re_search(bufp, string, size, startpos, range, regs) -struct re_pattern_buffer *bufp; -const char *string; -int size, startpos, range; -struct re_registers *regs; +re_search(struct re_pattern_buffer *bufp, const char *string, int size, int startpos, int range, struct re_registers *regs) { return re_search_2(bufp, NULL, 0, string, size, startpos, range, regs, size); @@ -2563,14 +2553,7 @@ * stack overflow). */ static int -re_search_2(bufp, string1, size1, string2, size2, startpos, range, regs, stop) -struct re_pattern_buffer *bufp; -const char *string1, *string2; -int size1, size2; -int startpos; -int range; -struct re_registers *regs; -int stop; +re_search_2(struct re_pattern_buffer *bufp, const char *string1, int size1, const char *string2, int size2, int startpos, int range, struct re_registers *regs, int stop) { int val; register char *fastmap = bufp->fastmap; @@ -2821,13 +2804,7 @@ * matched substring. */ int -re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) -struct re_pattern_buffer *bufp; -const char *string1, *string2; -int size1, size2; -int pos; -struct re_registers *regs; -int stop; +re_match_2(struct re_pattern_buffer *bufp, const char *string1, int size1, const char *string2, int size2, int pos, struct re_registers *regs, int stop) { /* General temporaries. */ int mcnt; @@ -4124,10 +4101,7 @@ * the return codes and their meanings.) */ int -regcomp(preg, pattern, cflags) -regex_t *preg; -const char *pattern; -int cflags; +regcomp(regex_t *preg, const char *pattern, int cflags) { reg_errcode_t ret; unsigned syntax @@ -4195,12 +4169,7 @@ * We return 0 if we find a match and REG_NOMATCH if not. */ int -regexec(preg, string, nmatch, pmatch, eflags) -const regex_t *preg; -const char *string; -size_t nmatch; -regmatch_t pmatch[]; -int eflags; +regexec(const regex_t *preg, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags) { int ret; struct re_registers regs; @@ -4287,8 +4256,7 @@ /* Free dynamically allocated space used by PREG. */ void -regfree(preg) -regex_t *preg; +regfree(regex_t * preg) { if (preg->buffer != NULL) free(preg->buffer); diff -u -r -N squid-5.8/configure squid-5.9/configure --- squid-5.8/configure 2023-02-28 23:01:36.000000000 +1300 +++ squid-5.9/configure 2023-05-01 10:36:05.000000000 +1200 @@ -1,7 +1,7 @@ #! /bin/sh # From configure.ac Revision. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.71 for Squid Web Proxy 5.8. +# Generated by GNU Autoconf 2.71 for Squid Web Proxy 5.9. # # Report bugs to . # @@ -626,8 +626,8 @@ # Identity of this package. PACKAGE_NAME='Squid Web Proxy' PACKAGE_TARNAME='squid' -PACKAGE_VERSION='5.8' -PACKAGE_STRING='Squid Web Proxy 5.8' +PACKAGE_VERSION='5.9' +PACKAGE_STRING='Squid Web Proxy 5.9' PACKAGE_BUGREPORT='http://bugs.squid-cache.org/' PACKAGE_URL='' @@ -1691,7 +1691,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 5.8 to adapt to many kinds of systems. +\`configure' configures Squid Web Proxy 5.9 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1762,7 +1762,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Squid Web Proxy 5.8:";; + short | recursive ) echo "Configuration of Squid Web Proxy 5.9:";; esac cat <<\_ACEOF @@ -2196,7 +2196,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -Squid Web Proxy configure 5.8 +Squid Web Proxy configure 5.9 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. @@ -3209,7 +3209,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 5.8, which was +It was created by Squid Web Proxy $as_me 5.9, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw @@ -4701,7 +4701,7 @@ # Define the identity of the package. PACKAGE='squid' - VERSION='5.8' + VERSION='5.9' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h @@ -25141,25 +25141,22 @@ CPPFLAGS="$CPPFLAGS $LIBGNUTLS_CFLAGS" fi - ac_fn_cxx_check_header_compile "$LINENO" "gnutls/gnutls.h" "ac_cv_header_gnutls_gnutls_h" "$ac_includes_default" -if test "x$ac_cv_header_gnutls_gnutls_h" = xyes -then : - printf "%s\n" "#define HAVE_GNUTLS_GNUTLS_H 1" >>confdefs.h - -fi -ac_fn_cxx_check_header_compile "$LINENO" "gnutls/x509.h" "ac_cv_header_gnutls_x509_h" "$ac_includes_default" -if test "x$ac_cv_header_gnutls_x509_h" = xyes -then : - printf "%s\n" "#define HAVE_GNUTLS_X509_H 1" >>confdefs.h - -fi -ac_fn_cxx_check_header_compile "$LINENO" "gnutls/abstract.h" "ac_cv_header_gnutls_abstract_h" "$ac_includes_default" -if test "x$ac_cv_header_gnutls_abstract_h" = xyes + # if any of the required headers is not found, signal we can't support gnutls + for ac_header in gnutls/gnutls.h gnutls/x509.h gnutls/abstract.h +do : + as_ac_Header=`printf "%s\n" "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_cxx_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" +if eval test \"x\$"$as_ac_Header"\" = x"yes" then : - printf "%s\n" "#define HAVE_GNUTLS_ABSTRACT_H 1" >>confdefs.h + cat >>confdefs.h <<_ACEOF +#define `printf "%s\n" "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF +else $as_nop + LIBGNUTLS_LIBS="" fi +done # rollback state, key is squid_gnutls_state @@ -48395,7 +48392,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 5.8, which was +This file was extended by Squid Web Proxy $as_me 5.9, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -48463,7 +48460,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -Squid Web Proxy config.status 5.8 +Squid Web Proxy config.status 5.9 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" diff -u -r -N squid-5.8/configure.ac squid-5.9/configure.ac --- squid-5.8/configure.ac 2023-02-28 23:01:36.000000000 +1300 +++ squid-5.9/configure.ac 2023-05-01 10:36:05.000000000 +1200 @@ -5,7 +5,7 @@ ## Please see the COPYING and CONTRIBUTORS files for details. ## -AC_INIT([Squid Web Proxy],[5.8],[http://bugs.squid-cache.org/],[squid]) +AC_INIT([Squid Web Proxy],[5.9],[http://bugs.squid-cache.org/],[squid]) AC_PREREQ(2.61) AC_CONFIG_HEADERS([include/autoconf.h]) AC_CONFIG_AUX_DIR(cfgaux) @@ -1288,7 +1288,8 @@ ## by testing for a 3.4.0+ function which we use AC_CHECK_LIB(gnutls,gnutls_pcert_export_x509,[LIBGNUTLS_LIBS="-lgnutls"]) ]) - AC_CHECK_HEADERS(gnutls/gnutls.h gnutls/x509.h gnutls/abstract.h) + # if any of the required headers is not found, signal we can't support gnutls + AC_CHECK_HEADERS([gnutls/gnutls.h gnutls/x509.h gnutls/abstract.h], [], [LIBGNUTLS_LIBS=""]) SQUID_STATE_ROLLBACK(squid_gnutls_state) #de-pollute LIBS diff -u -r -N squid-5.8/doc/release-notes/Makefile.am squid-5.9/doc/release-notes/Makefile.am --- squid-5.8/doc/release-notes/Makefile.am 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/doc/release-notes/Makefile.am 2023-05-01 10:29:35.000000000 +1200 @@ -19,6 +19,14 @@ # latex $(DOC).tex # +%.sgml: %.sgml.in + sed \ + -e "s%[@]SQUID_VERSION[@]%$(VERSION)%g" \ + -e "s%[@]SQUID_RELEASE[@]%$(SQUID_RELEASE)%g" \ + -e "s%[@]SQUID_RELEASE_OLD[@]%$$(( $(SQUID_RELEASE) - 1 ))%g" \ + < $< >$@ + test `grep -c "@SQUID" $@` -eq 0 + %.txt: %.sgml linuxdoc -B txt --filter $< diff -u -r -N squid-5.8/doc/release-notes/Makefile.in squid-5.9/doc/release-notes/Makefile.in --- squid-5.8/doc/release-notes/Makefile.in 2023-02-28 23:01:26.000000000 +1300 +++ squid-5.9/doc/release-notes/Makefile.in 2023-05-01 10:35:54.000000000 +1200 @@ -636,6 +636,14 @@ # latex $(DOC).tex # +@ENABLE_RELEASE_DOCS_TRUE@%.sgml: %.sgml.in +@ENABLE_RELEASE_DOCS_TRUE@ sed \ +@ENABLE_RELEASE_DOCS_TRUE@ -e "s%[@]SQUID_VERSION[@]%$(VERSION)%g" \ +@ENABLE_RELEASE_DOCS_TRUE@ -e "s%[@]SQUID_RELEASE[@]%$(SQUID_RELEASE)%g" \ +@ENABLE_RELEASE_DOCS_TRUE@ -e "s%[@]SQUID_RELEASE_OLD[@]%$$(( $(SQUID_RELEASE) - 1 ))%g" \ +@ENABLE_RELEASE_DOCS_TRUE@ < $< >$@ +@ENABLE_RELEASE_DOCS_TRUE@ test `grep -c "@SQUID" $@` -eq 0 + @ENABLE_RELEASE_DOCS_TRUE@%.txt: %.sgml @ENABLE_RELEASE_DOCS_TRUE@ linuxdoc -B txt --filter $< diff -u -r -N squid-5.8/doc/release-notes/release-5.html squid-5.9/doc/release-notes/release-5.html --- squid-5.8/doc/release-notes/release-5.html 2023-02-28 23:02:35.000000000 +1300 +++ squid-5.9/doc/release-notes/release-5.html 2023-05-01 10:42:42.000000000 +1200 @@ -3,26 +3,21 @@ - Squid 5.8 release notes + Squid 5.9 release notes -

Squid 5.8 release notes

+

Squid 5.9 release notes

Squid Developers

-
-This document contains the release notes for version 5 of Squid. -Squid is a WWW Cache application developed by the National Laboratory -for Applied Network Research and members of the Web Caching community. -

1. Notice

-

2. Major new features since Squid-4

+

2. Major new features since Squid--1

-

3. Changes to squid.conf since Squid-4

+

3. Changes to squid.conf since Squid--1

-

4. Changes to ./configure options since Squid-4

+

4. Changes to ./configure options since Squid--1

  • 4.1 New options @@ -62,31 +57,31 @@

    1. Notice

    -

    The Squid Team are pleased to announce the release of Squid-5.8.

    +

    The Squid Team are pleased to announce the release of Squid-5.9.

    This new release is available for download from -http://www.squid-cache.org/Versions/v5/ or the +http://www.squid-cache.org/Versions/v/ or the mirrors.

    We welcome feedback and bug reports. If you find a bug, please see -http://wiki.squid-cache.org/SquidFaq/BugReporting +https://wiki.squid-cache.org/SquidFaq/BugReporting for how to submit a report with a stack trace.

    1.1 Known issues

    Although this release is deemed good enough for use in many setups, please note the existence of -open bugs against Squid-5.

    +open bugs against Squid-.

    -

    1.2 Changes since earlier releases of Squid-5 +

    1.2 Changes since earlier releases of Squid-

    -

    The Squid-5 change history can be -viewed here.

    +

    The Squid- change history can be +viewed here.

    -

    2. Major new features since Squid-4

    +

    2. Major new features since Squid--1

    -

    Squid-5 represents a new feature release above Squid-4.

    +

    Squid- represents a new feature release above Squid--1.

    The most important of these new features are:

      @@ -237,9 +232,9 @@

      OpenSSL 3.0 uses new licensing terms.

      -

      3. Changes to squid.conf since Squid-4

      +

      3. Changes to squid.conf since Squid--1

      -

      There have been changes to Squid's configuration file since Squid-4.

      +

      There have been changes to Squid's configuration file since Squid--1.

      This section gives a thorough account of those changes in three categories:

        @@ -410,9 +405,9 @@

        -

        4. Changes to ./configure options since Squid-4

        +

        4. Changes to ./configure options since Squid--1

        -

        There have been some changes to Squid's build configuration since Squid-4.

        +

        There have been some changes to Squid's build configuration since Squid--1.

        This section gives an account of those changes in three categories:

          @@ -473,7 +468,7 @@

          5. Regressions since Squid-2.7

          -

          Some squid.conf options which were available in Squid-2.7 are not yet available in Squid-5

          +

          Some squid.conf options which were available in Squid-2.7 are not yet available in Squid-

          If you need something to do then porting one of these from Squid-2 is most welcome.

          diff -u -r -N squid-5.8/errors/af/ERR_ACCESS_DENIED squid-5.9/errors/af/ERR_ACCESS_DENIED --- squid-5.8/errors/af/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_ACCESS_DENIED 2023-05-01 10:36:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Toegang geweier.

          +
          + +

          Die opstelling van toegangsbeheer keer dat u navraag nou toegelaat kan word. Kontak gerus u diensverskaffer indien u voel dit is verkeerd.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/af/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/af/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:36:56.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          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-5.8/errors/af/ERR_AGENT_CONFIGURE squid-5.9/errors/af/ERR_AGENT_CONFIGURE --- squid-5.8/errors/af/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_AGENT_CONFIGURE 2023-05-01 10:36:56.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Webblaaier se opstelling + + +
          +

          FOUT

          +

          Webblaaier se opstelling

          +
          +
          + +
          +
          +

          Die opstelling van u webblaaier moet reggestel word om hierdie netwerk te gebruik.

          +
          + +

          Hoe om hierdie instellings in die blaaier te vind:

          + +
          +For Firefox browsers go to: +
            +
          • Nutsgoed -> Opsies -> Gevorderd -> Netwerk -> Verbinding
          • +
          • 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.
          • +
          +
          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_AGENT_WPAD squid-5.9/errors/af/ERR_AGENT_WPAD --- squid-5.8/errors/af/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_AGENT_WPAD 2023-05-01 10:36:56.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Webblaaier se opstelling + + +
          +

          FOUT

          +

          Webblaaier se opstelling

          +
          +
          + +
          +
          +

          Die opstelling van u webblaaier moet reggestel word om hierdie netwerk te gebruik.

          +
          + +

          Hoe om hierdie instellings in die blaaier te vind:

          + +
          +For Firefox browsers go to: +
            +
          • Nutsgoed -> Opsies -> Gevorderd -> Netwerk -> Verbinding
          • +
          • Kies "Outospeur instaanopstelling vir hierdie netwerk"
          • +
          +
          + +
          +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
          • +
          +
          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/af/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/af/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:36:57.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FOUT: Toegang tot kasgeheue geweier. + + +
          +

          FOUT

          +

          Toegang tot kasgeheue geweier.

          +
          +
          + +
          +

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

          + +
          +

          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-5.8/errors/af/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/af/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/af/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:36:57.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FOUT: Toegang tot kasbestuur geweier. + + +
          +

          FOUT

          +

          Toegang tot kasbestuur geweier.

          +
          +
          + +
          +

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

          + +
          +

          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-5.8/errors/af/ERR_CANNOT_FORWARD squid-5.9/errors/af/ERR_CANNOT_FORWARD --- squid-5.8/errors/af/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_CANNOT_FORWARD 2023-05-01 10:36:57.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Die kasbediener se administrateur is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_CONFLICT_HOST squid-5.9/errors/af/ERR_CONFLICT_HOST --- squid-5.8/errors/af/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_CONFLICT_HOST 2023-05-01 10:36:57.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_CONNECT_FAIL squid-5.9/errors/af/ERR_CONNECT_FAIL --- squid-5.8/errors/af/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_CONNECT_FAIL 2023-05-01 10:36:57.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Verbinding na %I het misluk

          +
          + +

          Die stelsel het die volgende teruggestuur: %E

          + +

          Die afgeleë gasheer of netwerk is dalk af. Probeer die navraag gerus weer.

          + +

          Die kasbediener se administrateur is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_DIR_LISTING squid-5.9/errors/af/ERR_DIR_LISTING --- squid-5.8/errors/af/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_DIR_LISTING 2023-05-01 10:36:57.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Gids: %U + + +
          +

          Gids: %U/

          +
          +
          + +
          +

          Gidsinhoud:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Ouergids (Wortelgids)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_DNS_FAIL squid-5.9/errors/af/ERR_DNS_FAIL --- squid-5.8/errors/af/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_DNS_FAIL 2023-05-01 10:36:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Kan nie IP-adres vanaf gasheernaam %H bepaal nie

          +
          + +

          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.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_ESI squid-5.9/errors/af/ERR_ESI --- squid-5.8/errors/af/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_ESI 2023-05-01 10:36:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          ESI-verwerking het misluk.

          +
          + +

          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-5.8/errors/af/ERR_FORWARDING_DENIED squid-5.9/errors/af/ERR_FORWARDING_DENIED --- squid-5.8/errors/af/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_FORWARDING_DENIED 2023-05-01 10:36:58.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          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-5.8/errors/af/ERR_FTP_DISABLED squid-5.9/errors/af/ERR_FTP_DISABLED --- squid-5.8/errors/af/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_FTP_DISABLED 2023-05-01 10:36:58.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          FTP is gedeaktiveerd

          +
          + +

          Hierdie kasbediener ondersteun nie FTP nie.

          + +

          Die kasbediener se administrateur is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_FTP_FAILURE squid-5.9/errors/af/ERR_FTP_FAILURE --- squid-5.8/errors/af/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_FTP_FAILURE 2023-05-01 10:36:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

          'n FTP-protokolfout het voorgekom tydens verkryging van die 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-5.8/errors/af/ERR_FTP_FORBIDDEN squid-5.9/errors/af/ERR_FTP_FORBIDDEN --- squid-5.8/errors/af/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_FTP_FORBIDDEN 2023-05-01 10:36:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

          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-5.8/errors/af/ERR_FTP_NOT_FOUND squid-5.9/errors/af/ERR_FTP_NOT_FOUND --- squid-5.8/errors/af/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_FTP_NOT_FOUND 2023-05-01 10:36:59.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

          Die volgende URL kon nie opgespoor word nie: %U

          + +

          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-5.8/errors/af/ERR_FTP_PUT_CREATED squid-5.9/errors/af/ERR_FTP_PUT_CREATED --- squid-5.8/errors/af/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_FTP_PUT_CREATED 2023-05-01 10:36:59.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT suksesvol. + + +
          +

          Bewerking suksesvol

          +

          Lêer is geskep

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_FTP_PUT_ERROR squid-5.9/errors/af/ERR_FTP_PUT_ERROR --- squid-5.8/errors/af/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_FTP_PUT_ERROR 2023-05-01 10:36:59.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FOUT: Oplaai na FTP het misluk + + +
          +

          FOUT

          +

          FTP PUT-oplaai het misluk

          +
          +
          + +
          +

          'n FTP-protokolfout het voorgekom tydens verkryging van die URL: %U

          + +

          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.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_FTP_PUT_MODIFIED squid-5.9/errors/af/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/af/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_FTP_PUT_MODIFIED 2023-05-01 10:36:59.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT suksesvol. + + +
          +

          Bewerking suksesvol

          +

          Lêer is opgedateer

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_FTP_UNAVAILABLE squid-5.9/errors/af/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/af/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_FTP_UNAVAILABLE 2023-05-01 10:36:59.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

          Die FTP-bediener was te besig om die URL te verkry: %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-5.8/errors/af/ERR_GATEWAY_FAILURE squid-5.9/errors/af/ERR_GATEWAY_FAILURE --- squid-5.8/errors/af/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_GATEWAY_FAILURE 2023-05-01 10:37:00.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

          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-5.8/errors/af/ERR_ICAP_FAILURE squid-5.9/errors/af/ERR_ICAP_FAILURE --- squid-5.8/errors/af/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_ICAP_FAILURE 2023-05-01 10:37:00.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          ICAP-protokolfout.

          +
          + +

          Die stelsel het die volgende teruggestuur: %E

          + +

          Dit beteken dat een of ander aspek van die ICAP-kommunikasie misluk het.

          + +

          Enkele moontlike probleme is:

          +
            +
          • Die ICAP-bediener is nie bereikbaar nie.

          • +
          • 'n Onwettige antwoord is ontvang vanaf die ICAP-bediener.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_INVALID_REQ squid-5.9/errors/af/ERR_INVALID_REQ --- squid-5.8/errors/af/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_INVALID_REQ 2023-05-01 10:37:00.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +
          %R
          +
          + +

          Enkele moontlike probleme is:

          +
            +
          • Ontbrekende of onbekende navraagmetode.

          • +
          • Ontbrekende URL.

          • +
          • Ontbrekende HTTP-identifiseerder (HTTP/1.0).

          • +
          • 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-5.8/errors/af/ERR_INVALID_RESP squid-5.9/errors/af/ERR_INVALID_RESP --- squid-5.8/errors/af/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_INVALID_RESP 2023-05-01 10:37:00.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

          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.

          + +

          Die kasbediener se administrateur kan dalk meer detail verskaf oor die presiese aard van die probleem indien nodig.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_INVALID_URL squid-5.9/errors/af/ERR_INVALID_URL --- squid-5.8/errors/af/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_INVALID_URL 2023-05-01 10:37:00.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Ongeldige URL

          +
          + +

          'n Sekere aspek van die aangevraagde URL is verkeerd.

          + +

          Enkele moontlike probleme is:

          +
            +
          • Ontbrekende of verkeerde toegangsprotokol (moet http:// of soortgelyk wees)

          • +
          • Ontbrekende gasheernaam

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

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

          • +
          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_LIFETIME_EXP squid-5.9/errors/af/ERR_LIFETIME_EXP --- squid-5.8/errors/af/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_LIFETIME_EXP 2023-05-01 10:37:00.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Verbinding se leeftyd het verstryk

          +
          + +

          Squid het die navraag afgesluit omdat dit die maksimumleeftyd vir 'n verbinding oorskry het.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_NO_RELAY squid-5.9/errors/af/ERR_NO_RELAY --- squid-5.8/errors/af/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_NO_RELAY 2023-05-01 10:37:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

          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-5.8/errors/af/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/af/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/af/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:37:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          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-5.8/errors/af/error-details.txt squid-5.9/errors/af/error-details.txt --- squid-5.8/errors/af/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/error-details.txt 2023-05-01 10:37:03.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/af/ERR_PRECONDITION_FAILED squid-5.9/errors/af/ERR_PRECONDITION_FAILED --- squid-5.8/errors/af/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_PRECONDITION_FAILED 2023-05-01 10:37:01.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

          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-5.8/errors/af/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/af/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/af/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:37:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_READ_ERROR squid-5.9/errors/af/ERR_READ_ERROR --- squid-5.8/errors/af/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_READ_ERROR 2023-05-01 10:37:01.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Leesfout

          +
          + +

          Die stelsel het die volgende teruggestuur: %E

          + +

          'n Fouttoestand het voorgekom tydens lees van data van die netwerk. Probeer die versoek gerus weer.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_READ_TIMEOUT squid-5.9/errors/af/ERR_READ_TIMEOUT --- squid-5.8/errors/af/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_READ_TIMEOUT 2023-05-01 10:37:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Tyd verstreke tydens lees

          +
          + +

          Die stelsel het die volgende teruggestuur: %E

          + +

          Die tyd het verstryk tydens die lees van data van die netwerk. Die netwerk of bediener is dalk af of verstop. Probeer die navraag gerus weer.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/af/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/af/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:37:02.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Kon nie 'n beveiligde verbinding skep na %I nie

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/af/ERR_SHUTTING_DOWN squid-5.9/errors/af/ERR_SHUTTING_DOWN --- squid-5.8/errors/af/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_SHUTTING_DOWN 2023-05-01 10:37:02.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +

          Hierdie kasbediener skakel tans af en kan nie nou u navraag bedien nie. Probeer gerus u navraag weer binnekort.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_SOCKET_FAILURE squid-5.9/errors/af/ERR_SOCKET_FAILURE --- squid-5.8/errors/af/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_SOCKET_FAILURE 2023-05-01 10:37:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Sokfout

          +
          + +

          Die stelsel het die volgende teruggestuur: %E

          + +

          Squid kan nie 'n TCP-sok skep nie, vermoedelik weens hoë lading. Probeer die navraag gerus weer.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_TOO_BIG squid-5.9/errors/af/ERR_TOO_BIG --- squid-5.8/errors/af/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_TOO_BIG 2023-05-01 10:37:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Die navraag of antwoord is te groot.

          +
          + +

          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-5.8/errors/af/ERR_UNSUP_HTTPVERSION squid-5.9/errors/af/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/af/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_UNSUP_HTTPVERSION 2023-05-01 10:37:02.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Niegesteunde HTTP-weergawe

          +
          +
          + +
          +

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

          + +
          +

          Niegesteunde HTTP-weergawe

          +
          + +

          Hierdie Squid aanvaar nie die HTTP-weergawe wat u probeer gebruik nie.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_UNSUP_REQ squid-5.9/errors/af/ERR_UNSUP_REQ --- squid-5.8/errors/af/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_UNSUP_REQ 2023-05-01 10:37:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Niegesteunde versoekmetode en -protokol

          +
          + +

          Squid ondersteun nie alle navraagmetodes vir alle toegangsprotokolle nie. Mens kan by voorbeeld nie 'n Gopher-navraag POST nie.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_URN_RESOLVE squid-5.9/errors/af/ERR_URN_RESOLVE --- squid-5.8/errors/af/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_URN_RESOLVE 2023-05-01 10:37:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: Die aangevraagde URN kon nie verkry word nie + + +
          +

          FOUT

          +

          'n URL vir die aangevraagde URN kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Kan nie URN oplos nie

          +
          + +

          Moet eerder nie te veel verwag van URN'e op %T nie :)

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_WRITE_ERROR squid-5.9/errors/af/ERR_WRITE_ERROR --- squid-5.8/errors/af/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_WRITE_ERROR 2023-05-01 10:37:03.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Skryffout

          +
          + +

          Die stelsel het die volgende teruggestuur: %E

          + +

          'n Fouttoestand het voorgekom tydens skryf van data van die netwerk. Probeer die versoek gerus weer.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/af/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/af/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/af/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/af/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:37:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: Die aangevraagde URL kon nie verkry word nie + + +
          +

          FOUT

          +

          Die aangevraagde URL kon nie verkry word nie

          +
          +
          + +
          +

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

          + +
          +

          Antwoord het nul-lengte

          +
          + +

          Squid het geen data vir hierdie navraag ontvang nie.

          + +

          Die kasbediener se administrateur is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ar/ERR_ACCESS_DENIED squid-5.9/errors/ar/ERR_ACCESS_DENIED --- squid-5.8/errors/ar/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_ACCESS_DENIED 2023-05-01 10:37:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/ar/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/ar/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:37:03.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_AGENT_CONFIGURE squid-5.9/errors/ar/ERR_AGENT_CONFIGURE --- squid-5.8/errors/ar/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_AGENT_CONFIGURE 2023-05-01 10:37:04.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_AGENT_WPAD squid-5.9/errors/ar/ERR_AGENT_WPAD --- squid-5.8/errors/ar/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_AGENT_WPAD 2023-05-01 10:37:04.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/ar/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/ar/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:37:04.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: Cache Access Denied + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/ar/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/ar/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:37:04.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: Cache Manager Access Denied + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_CANNOT_FORWARD squid-5.9/errors/ar/ERR_CANNOT_FORWARD --- squid-5.8/errors/ar/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_CANNOT_FORWARD 2023-05-01 10:37:04.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ar/ERR_CONFLICT_HOST squid-5.9/errors/ar/ERR_CONFLICT_HOST --- squid-5.8/errors/ar/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_CONFLICT_HOST 2023-05-01 10:37:05.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ar/ERR_CONNECT_FAIL squid-5.9/errors/ar/ERR_CONNECT_FAIL --- squid-5.8/errors/ar/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_CONNECT_FAIL 2023-05-01 10:37:05.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_DIR_LISTING squid-5.9/errors/ar/ERR_DIR_LISTING --- squid-5.8/errors/ar/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_DIR_LISTING 2023-05-01 10:37:05.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ar/ERR_DNS_FAIL squid-5.9/errors/ar/ERR_DNS_FAIL --- squid-5.8/errors/ar/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_DNS_FAIL 2023-05-01 10:37:05.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_ESI squid-5.9/errors/ar/ERR_ESI --- squid-5.8/errors/ar/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_ESI 2023-05-01 10:37:05.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_FORWARDING_DENIED squid-5.9/errors/ar/ERR_FORWARDING_DENIED --- squid-5.8/errors/ar/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_FORWARDING_DENIED 2023-05-01 10:37:05.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_FTP_DISABLED squid-5.9/errors/ar/ERR_FTP_DISABLED --- squid-5.8/errors/ar/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_FTP_DISABLED 2023-05-01 10:37:06.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_FTP_FAILURE squid-5.9/errors/ar/ERR_FTP_FAILURE --- squid-5.8/errors/ar/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_FTP_FAILURE 2023-05-01 10:37:06.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_FTP_FORBIDDEN squid-5.9/errors/ar/ERR_FTP_FORBIDDEN --- squid-5.8/errors/ar/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_FTP_FORBIDDEN 2023-05-01 10:37:06.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_FTP_NOT_FOUND squid-5.9/errors/ar/ERR_FTP_NOT_FOUND --- squid-5.8/errors/ar/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_FTP_NOT_FOUND 2023-05-01 10:37:06.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_FTP_PUT_CREATED squid-5.9/errors/ar/ERR_FTP_PUT_CREATED --- squid-5.8/errors/ar/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_FTP_PUT_CREATED 2023-05-01 10:37:06.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operation successful

          +

          File created

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ar/ERR_FTP_PUT_ERROR squid-5.9/errors/ar/ERR_FTP_PUT_ERROR --- squid-5.8/errors/ar/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_FTP_PUT_ERROR 2023-05-01 10:37:06.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: FTP upload failed + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_FTP_PUT_MODIFIED squid-5.9/errors/ar/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/ar/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_FTP_PUT_MODIFIED 2023-05-01 10:37:07.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operation successful

          +

          File updated

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ar/ERR_FTP_UNAVAILABLE squid-5.9/errors/ar/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/ar/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_FTP_UNAVAILABLE 2023-05-01 10:37:07.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_GATEWAY_FAILURE squid-5.9/errors/ar/ERR_GATEWAY_FAILURE --- squid-5.8/errors/ar/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_GATEWAY_FAILURE 2023-05-01 10:37:07.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_ICAP_FAILURE squid-5.9/errors/ar/ERR_ICAP_FAILURE --- squid-5.8/errors/ar/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_ICAP_FAILURE 2023-05-01 10:37:07.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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:

          +
            +
          • The ICAP server is not reachable.

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

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ar/ERR_INVALID_REQ squid-5.9/errors/ar/ERR_INVALID_REQ --- squid-5.8/errors/ar/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_INVALID_REQ 2023-05-01 10:37:07.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/ar/ERR_INVALID_RESP squid-5.9/errors/ar/ERR_INVALID_RESP --- squid-5.8/errors/ar/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_INVALID_RESP 2023-05-01 10:37:08.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          طلب مرفوض.خطأ أثناء اجراء الطلب

          + +
          +
          %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-5.8/errors/ar/ERR_INVALID_URL squid-5.9/errors/ar/ERR_INVALID_URL --- squid-5.8/errors/ar/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_INVALID_URL 2023-05-01 10:37:08.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          مسار غير صحيح

          +
          + +

          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-5.8/errors/ar/ERR_LIFETIME_EXP squid-5.9/errors/ar/ERR_LIFETIME_EXP --- squid-5.8/errors/ar/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_LIFETIME_EXP 2023-05-01 10:37:08.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_NO_RELAY squid-5.9/errors/ar/ERR_NO_RELAY --- squid-5.8/errors/ar/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_NO_RELAY 2023-05-01 10:37:08.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/ar/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/ar/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:37:08.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/error-details.txt squid-5.9/errors/ar/error-details.txt --- squid-5.8/errors/ar/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/error-details.txt 2023-05-01 10:37:11.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/ar/ERR_PRECONDITION_FAILED squid-5.9/errors/ar/ERR_PRECONDITION_FAILED --- squid-5.8/errors/ar/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_PRECONDITION_FAILED 2023-05-01 10:37:08.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ar/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/ar/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/ar/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:37:09.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ar/ERR_READ_ERROR squid-5.9/errors/ar/ERR_READ_ERROR --- squid-5.8/errors/ar/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_READ_ERROR 2023-05-01 10:37:09.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          خطأ قراءة

          +
          + +

          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-5.8/errors/ar/ERR_READ_TIMEOUT squid-5.9/errors/ar/ERR_READ_TIMEOUT --- squid-5.8/errors/ar/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_READ_TIMEOUT 2023-05-01 10:37:09.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/ar/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/ar/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:37:09.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/ar/ERR_SHUTTING_DOWN squid-5.9/errors/ar/ERR_SHUTTING_DOWN --- squid-5.8/errors/ar/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_SHUTTING_DOWN 2023-05-01 10:37:09.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_SOCKET_FAILURE squid-5.9/errors/ar/ERR_SOCKET_FAILURE --- squid-5.8/errors/ar/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_SOCKET_FAILURE 2023-05-01 10:37:09.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_TOO_BIG squid-5.9/errors/ar/ERR_TOO_BIG --- squid-5.8/errors/ar/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_TOO_BIG 2023-05-01 10:37:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_UNSUP_HTTPVERSION squid-5.9/errors/ar/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/ar/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_UNSUP_HTTPVERSION 2023-05-01 10:37:10.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_UNSUP_REQ squid-5.9/errors/ar/ERR_UNSUP_REQ --- squid-5.8/errors/ar/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_UNSUP_REQ 2023-05-01 10:37:10.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_URN_RESOLVE squid-5.9/errors/ar/ERR_URN_RESOLVE --- squid-5.8/errors/ar/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_URN_RESOLVE 2023-05-01 10:37:10.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/ar/ERR_WRITE_ERROR squid-5.9/errors/ar/ERR_WRITE_ERROR --- squid-5.8/errors/ar/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_WRITE_ERROR 2023-05-01 10:37:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          خطأ كتابة

          +
          + +

          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-5.8/errors/ar/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/ar/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/ar/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ar/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:37:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          خطأ

          +

          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-5.8/errors/az/ERR_ACCESS_DENIED squid-5.9/errors/az/ERR_ACCESS_DENIED --- squid-5.8/errors/az/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_ACCESS_DENIED 2023-05-01 10:37:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          Giriş qadağandır.

          +
          + +

          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-5.8/errors/az/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/az/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/az/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:37:11.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

          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-5.8/errors/az/ERR_AGENT_CONFIGURE squid-5.9/errors/az/ERR_AGENT_CONFIGURE --- squid-5.8/errors/az/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_AGENT_CONFIGURE 2023-05-01 10:37:11.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          SƏHV

          +

          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-5.8/errors/az/ERR_AGENT_WPAD squid-5.9/errors/az/ERR_AGENT_WPAD --- squid-5.8/errors/az/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_AGENT_WPAD 2023-05-01 10:37:11.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          SƏHV

          +

          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-5.8/errors/az/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/az/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/az/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:37:11.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +SƏHV: Keşdən istifadə qadağandır + + +
          +

          SƏHV

          +

          Keşdən istifadə qadağandır

          +
          +
          + +
          +

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

          + +
          +

          Keşdən istifadə qadağandır

          +
          + +

          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-5.8/errors/az/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/az/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/az/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:37:12.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +SƏHV: Keş idarəetməsinə giriş qadağandır + + +
          +

          SƏHV

          +

          Keş idarəetməsinə giriş qadağandır

          +
          +
          + +
          +

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

          + +
          +

          Keş idarəetməsinə giriş qadağandır

          +
          + +

          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-5.8/errors/az/ERR_CANNOT_FORWARD squid-5.9/errors/az/ERR_CANNOT_FORWARD --- squid-5.8/errors/az/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_CANNOT_FORWARD 2023-05-01 10:37:12.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          Hal-hazırda sorğunuzu yönlədirmək mümkün deyildir.

          +
          + +

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

          + +

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

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_CONFLICT_HOST squid-5.9/errors/az/ERR_CONFLICT_HOST --- squid-5.8/errors/az/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_CONFLICT_HOST 2023-05-01 10:37:12.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

          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.

          + +

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

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_CONNECT_FAIL squid-5.9/errors/az/ERR_CONNECT_FAIL --- squid-5.8/errors/az/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_CONNECT_FAIL 2023-05-01 10:37:12.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          Connection to %I failed.

          +
          + +

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

          + +

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

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_DIR_LISTING squid-5.9/errors/az/ERR_DIR_LISTING --- squid-5.8/errors/az/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_DIR_LISTING 2023-05-01 10:37:12.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Direktoriyanın m�^�zmunu

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_DNS_FAIL squid-5.9/errors/az/ERR_DNS_FAIL --- squid-5.8/errors/az/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_DNS_FAIL 2023-05-01 10:37:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          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.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_ESI squid-5.9/errors/az/ERR_ESI --- squid-5.8/errors/az/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_ESI 2023-05-01 10:37:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

          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-5.8/errors/az/ERR_FORWARDING_DENIED squid-5.9/errors/az/ERR_FORWARDING_DENIED --- squid-5.8/errors/az/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_FORWARDING_DENIED 2023-05-01 10:37:13.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          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-5.8/errors/az/ERR_FTP_DISABLED squid-5.9/errors/az/ERR_FTP_DISABLED --- squid-5.8/errors/az/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_FTP_DISABLED 2023-05-01 10:37:13.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          FTP protokolu qadağandır

          +
          + +

          Bu keş FTP protokolunu təmin etmir.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_FTP_FAILURE squid-5.9/errors/az/ERR_FTP_FAILURE --- squid-5.8/errors/az/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_FTP_FAILURE 2023-05-01 10:37:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

          URL ilə əlaqə zamanı FTP protokolu uzrə aşağıdakı səhv baş vermişdir: %U

          + +

          Squid sent the following FTP command:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_FTP_FORBIDDEN squid-5.9/errors/az/ERR_FTP_FORBIDDEN --- squid-5.8/errors/az/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_FTP_FORBIDDEN 2023-05-01 10:37:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

          URL ilə əlaqə zamanı FTP protokolu uzrə aşağıdakı səhv baş vermişdir: %U

          + +

          Squid sent the following FTP command:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_FTP_NOT_FOUND squid-5.9/errors/az/ERR_FTP_NOT_FOUND --- squid-5.8/errors/az/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_FTP_NOT_FOUND 2023-05-01 10:37:14.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

          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-5.8/errors/az/ERR_FTP_PUT_CREATED squid-5.9/errors/az/ERR_FTP_PUT_CREATED --- squid-5.8/errors/az/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_FTP_PUT_CREATED 2023-05-01 10:37:14.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Əməliyyat müvəfəqiyyətlə başa çatdı

          +

          Fayl yarandı

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_FTP_PUT_ERROR squid-5.9/errors/az/ERR_FTP_PUT_ERROR --- squid-5.8/errors/az/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_FTP_PUT_ERROR 2023-05-01 10:37:14.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +SƏHV: FTP yükləmə uğursuzluqla başa çatdı + + +
          +

          SƏHV

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          URL ilə əlaqə zamanı FTP protokolu uzrə aşağıdakı səhv baş vermişdir: %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-5.8/errors/az/ERR_FTP_PUT_MODIFIED squid-5.9/errors/az/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/az/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_FTP_PUT_MODIFIED 2023-05-01 10:37:14.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Əməliyyat müvəfəqiyyətlə başa çatdı

          +

          Fayl yeniləndi

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_FTP_UNAVAILABLE squid-5.9/errors/az/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/az/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_FTP_UNAVAILABLE 2023-05-01 10:37:14.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

          URL ilə əlaqə zamanı FTP serverin həddən ziyadə yüklü olduğu məlum olub: %U

          + +

          Squid sent the following FTP command:

          + +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_GATEWAY_FAILURE squid-5.9/errors/az/ERR_GATEWAY_FAILURE --- squid-5.8/errors/az/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_GATEWAY_FAILURE 2023-05-01 10:37:14.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

          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-5.8/errors/az/ERR_ICAP_FAILURE squid-5.9/errors/az/ERR_ICAP_FAILURE --- squid-5.8/errors/az/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_ICAP_FAILURE 2023-05-01 10:37:15.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          İCAP protokol s�^�hvi

          +
          + +

          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.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_INVALID_REQ squid-5.9/errors/az/ERR_INVALID_REQ --- squid-5.8/errors/az/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_INVALID_REQ 2023-05-01 10:37:15.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +
          %R
          +
          + +

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

          +
            +
          • (GET, POST) sorğusunun metodu məlum deyil və ya umumiyyətlə yoxdur.

          • +
          • URL yoxdur.

          • +
          • HTTP identifikator yoxdur (HTTP/1.0).

          • +
          • 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.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_INVALID_RESP squid-5.9/errors/az/ERR_INVALID_RESP --- squid-5.8/errors/az/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_INVALID_RESP 2023-05-01 10:37:15.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

          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

          + +

          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-5.8/errors/az/ERR_INVALID_URL squid-5.9/errors/az/ERR_INVALID_URL --- squid-5.8/errors/az/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_INVALID_URL 2023-05-01 10:37:15.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          Invalid URL

          +
          + +

          URL-nin bəzi aspektləri səhvdir.

          + +

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

          +
            +
          • 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.

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_LIFETIME_EXP squid-5.9/errors/az/ERR_LIFETIME_EXP --- squid-5.8/errors/az/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_LIFETIME_EXP 2023-05-01 10:37:15.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          Qoşulma müddəti bitdi

          +
          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_NO_RELAY squid-5.9/errors/az/ERR_NO_RELAY --- squid-5.8/errors/az/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_NO_RELAY 2023-05-01 10:37:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/az/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/az/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:37:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

          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.

          +
          + +

          Siz only-if-cached əmri ilə sorğu göndərmisiniz. Obyekt keşdə tapılmadı, və ya only-if-cached əmri ilə qadağan olunmuş obyektin yenilənməsi tələb olunur.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/error-details.txt squid-5.9/errors/az/error-details.txt --- squid-5.8/errors/az/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/error-details.txt 2023-05-01 10:37:18.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/az/ERR_PRECONDITION_FAILED squid-5.9/errors/az/ERR_PRECONDITION_FAILED --- squid-5.8/errors/az/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_PRECONDITION_FAILED 2023-05-01 10:37:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/az/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/az/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:37:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_READ_ERROR squid-5.9/errors/az/ERR_READ_ERROR --- squid-5.8/errors/az/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_READ_ERROR 2023-05-01 10:37:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          Oxunma səhvi

          +
          + +

          Sistemdən gələn cavab: %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-5.8/errors/az/ERR_READ_TIMEOUT squid-5.9/errors/az/ERR_READ_TIMEOUT --- squid-5.8/errors/az/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_READ_TIMEOUT 2023-05-01 10:37:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          Sistemdən gələn cavab: %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-5.8/errors/az/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/az/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/az/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:37:17.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          Failed to establish a secure connection to %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/az/ERR_SHUTTING_DOWN squid-5.9/errors/az/ERR_SHUTTING_DOWN --- squid-5.8/errors/az/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_SHUTTING_DOWN 2023-05-01 10:37:17.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

          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-5.8/errors/az/ERR_SOCKET_FAILURE squid-5.9/errors/az/ERR_SOCKET_FAILURE --- squid-5.8/errors/az/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_SOCKET_FAILURE 2023-05-01 10:37:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          Socket Failure

          +
          + +

          Sistemdən gələn cavab: %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-5.8/errors/az/ERR_TOO_BIG squid-5.9/errors/az/ERR_TOO_BIG --- squid-5.8/errors/az/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_TOO_BIG 2023-05-01 10:37:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

          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.

          +
          + +

          Əgər siz POST və ya PUT sorğusunu edirsinizsə, sizin göndərmək istədiniz fayl həddən ziyadə böyükdür.

          +

          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-5.8/errors/az/ERR_UNSUP_HTTPVERSION squid-5.9/errors/az/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/az/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_UNSUP_HTTPVERSION 2023-05-01 10:37:17.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_UNSUP_REQ squid-5.9/errors/az/ERR_UNSUP_REQ --- squid-5.8/errors/az/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_UNSUP_REQ 2023-05-01 10:37:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          Squid bütün sorğu metodları və bütün protokollardəstəkləmir. Məsələn, Gopher protokolu üzrə siz POST sorğu metodunu yerinə yetirə bilməzsiniz.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_URN_RESOLVE squid-5.9/errors/az/ERR_URN_RESOLVE --- squid-5.8/errors/az/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_URN_RESOLVE 2023-05-01 10:37:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          SƏHV

          +

          Sorğulanan URN üçün URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          URN tapılmadı

          +
          + +

          %T texnologiyasından çox şey gözləməyə dəyməz :)

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_WRITE_ERROR squid-5.9/errors/az/ERR_WRITE_ERROR --- squid-5.8/errors/az/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_WRITE_ERROR 2023-05-01 10:37:18.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          Yazma səhvi

          +
          + +

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

          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/az/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/az/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/az/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/az/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:37:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +SƏHV: Sorğulanan URL ilə əlaqə yaradılmadı + + +
          +

          SƏHV

          +

          Sorğulanan URL ilə əlaqə yaradılmadı

          +
          +
          + +
          +

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

          + +
          +

          Sıfır Uzunluqlu Cavab

          +
          + +

          Squid bu sorğu üçün heç bir məlumat almadı.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_ACCESS_DENIED squid-5.9/errors/bg/ERR_ACCESS_DENIED --- squid-5.8/errors/bg/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_ACCESS_DENIED 2023-05-01 10:37:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Отказан достъп

          +
          + +

          Конфигурацията за контрол на достъпа не позволява да бъде изпълнена Вашата заявка в този момент. Моля, ако считате, че това е неправилно, да се обърнете към Вашия Интернет доставчик.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/bg/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/bg/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:37:18.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

          Възникна следната грешка при опит за достъп до: %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-5.8/errors/bg/ERR_AGENT_CONFIGURE squid-5.9/errors/bg/ERR_AGENT_CONFIGURE --- squid-5.8/errors/bg/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_AGENT_CONFIGURE 2023-05-01 10:37:19.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          ГРЕШКА

          +

          Web Browser Configuration

          +
          +
          + +
          +
          +

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

          +
          + +

          Как да намерите тези настройки на Вашия браузер:

          + +
          +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: +
            +
          • Инструменти -> Опции за интернет -> Връзки -> LAN настройки -> Прокси сървър
          • +
          • 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.
          • +
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_AGENT_WPAD squid-5.9/errors/bg/ERR_AGENT_WPAD --- squid-5.8/errors/bg/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_AGENT_WPAD 2023-05-01 10:37:19.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          ГРЕШКА

          +

          Web Browser Configuration

          +
          +
          + +
          +
          +

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

          +
          + +

          Как да намерите тези настройки на Вашия браузер:

          + +
          +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: +
            +
          • Инструменти -> Опции за интернет -> Връзки -> LAN настройки -> Прокси сървър
          • +
          • Изберете Автоматично откриване на настройките.
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Tools -> Preferences -> Advanced -> Network -> Proxy Servers
          • +
          • Изберете Използване на Автоматично конфигуриране на прокси сървър.
          • +
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/bg/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/bg/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:37:19.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ГРЕШКА: Отказан достъп до кешираните данни. + + +
          +

          ГРЕШКА

          +

          Отказан достъп до кешираните данни.

          +
          +
          + +
          +

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

          + +
          +

          Отказан достъп до кешираните данни.

          +
          + +

          Съжалявам, не Ви е позволен достъп до %U от този кеш докато не представите своето име и парола за достъп.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/bg/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/bg/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:37:19.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ГРЕШКА: Отказан достъп до кеш мениджъра. + + +
          +

          ГРЕШКА

          +

          Отказан достъп до кеш мениджъра.

          +
          +
          + +
          +

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

          + +
          +

          Отказан достъп до кеш мениджъра.

          +
          + +

          Съжалявам, не Ви е позволен достъп до %U от този кеш мениджър докато не представите своето име и парола за достъп.

          + +

          Моля обърнете се към администратора ако имате проблем с достъпа или, ако сте администратора, прочетете документацията на Squid за кеш мениджър интерфейса и проверете логовете за по-подробни съобщения за грешката.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_CANNOT_FORWARD squid-5.9/errors/bg/ERR_CANNOT_FORWARD --- squid-5.8/errors/bg/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_CANNOT_FORWARD 2023-05-01 10:37:19.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Заявката не може да бъде пренасочена в този момент.

          +
          + +

          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.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_CONFLICT_HOST squid-5.9/errors/bg/ERR_CONFLICT_HOST --- squid-5.8/errors/bg/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_CONFLICT_HOST 2023-05-01 10:37:20.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

          Възникна следната грешка при опит за достъп до: %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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_CONNECT_FAIL squid-5.9/errors/bg/ERR_CONNECT_FAIL --- squid-5.8/errors/bg/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_CONNECT_FAIL 2023-05-01 10:37:20.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Връзката до %I не може да бъде осъществена.

          +
          + +

          Операционната система даде следното съобщение: %E

          + +

          Вероятно отдалеченият сървър или мрежа са недостъпни. Моля, опитайте отново да направите Вашата заявка.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_DIR_LISTING squid-5.9/errors/bg/ERR_DIR_LISTING --- squid-5.8/errors/bg/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_DIR_LISTING 2023-05-01 10:37:20.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +директория: %U + + +
          +

          директория: %U/

          +
          +
          + +
          +

          Съдържание на директорията:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Горна директория (Главна директория)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_DNS_FAIL squid-5.9/errors/bg/ERR_DNS_FAIL --- squid-5.8/errors/bg/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_DNS_FAIL 2023-05-01 10:37:20.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Не може да бъде намерен IP адресът на сървъра %H

          +
          + +

          Сървърът на имена върна следния отговор:

          +
          +
          %z
          +
          + +

          Сървърът не може да бъде намерен. Проверете дали адресът е правилен.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_ESI squid-5.9/errors/bg/ERR_ESI --- squid-5.8/errors/bg/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_ESI 2023-05-01 10:37:20.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Неуспешна обработка на ESI заявка.

          +
          + +

          Обработката на ESI заявката върна следния резултат:

          +
          +
          %Z
          +
          + +

          ESI шаблонът не може да бъде обработен. Обърнете се към администратора на web сървъра

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_FORWARDING_DENIED squid-5.9/errors/bg/ERR_FORWARDING_DENIED --- squid-5.8/errors/bg/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_FORWARDING_DENIED 2023-05-01 10:37:20.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Пренасочването на заявката е отказано.

          +
          + +

          Този кеш сървър няма да пренасочи Вашата заявка, защото не е висшестоящ кеш сървър за клиента, от който идва заявката. Вероятно клиентът %i е неправилно конфигуриран кеш сървър.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_FTP_DISABLED squid-5.9/errors/bg/ERR_FTP_DISABLED --- squid-5.8/errors/bg/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_FTP_DISABLED 2023-05-01 10:37:21.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Протоколът FTP е забранен.

          +
          + +

          Този кеш сървър не поддържа FTP

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_FTP_FAILURE squid-5.9/errors/bg/ERR_FTP_FAILURE --- squid-5.8/errors/bg/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_FTP_FAILURE 2023-05-01 10:37:21.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +

          Кеш сървърът изпрати следната FTP команда:

          +
          +
          %f
          +
          + +

          Сървърът даде следния отговор:

          +
          +
          %F
          +
          %g
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_FTP_FORBIDDEN squid-5.9/errors/bg/ERR_FTP_FORBIDDEN --- squid-5.8/errors/bg/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_FTP_FORBIDDEN 2023-05-01 10:37:21.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

          Възникна грешка при ауторизация към отдалечения FTP сървър при доставката на URL:%U

          + +

          Кеш сървърът изпрати следната FTP команда:

          +
          +
          %f
          +
          + +

          Сървърът даде следния отговор:

          +
          +
          %F
          +
          %g
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_FTP_NOT_FOUND squid-5.9/errors/bg/ERR_FTP_NOT_FOUND --- squid-5.8/errors/bg/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_FTP_NOT_FOUND 2023-05-01 10:37:21.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

          Следният адрес е недостъпен: %U

          + +

          Кеш сървърът изпрати следната FTP команда:

          +
          +
          %f
          +
          + +

          Сървърът даде следния отговор:

          +
          +
          %F
          +
          %g
          +
          + +

          Това би могло да бъде причинено от FTP заявка, в която е посочен абсолютен път (което е неправилно според документ RFC 1738). Ако това е причината, то файлът би могъл да бъде намерен на адрес %B.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_FTP_PUT_CREATED squid-5.9/errors/bg/ERR_FTP_PUT_CREATED --- squid-5.8/errors/bg/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_FTP_PUT_CREATED 2023-05-01 10:37:21.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Операцията е успешна.

          +

          Файлът е създаден

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_FTP_PUT_ERROR squid-5.9/errors/bg/ERR_FTP_PUT_ERROR --- squid-5.8/errors/bg/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_FTP_PUT_ERROR 2023-05-01 10:37:21.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ГРЕШКА: Неуспешен опит за качване на файл. + + +
          +

          ГРЕШКА

          +

          FTP PUT upload failed

          +
          +
          + +
          +

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

          + +

          Кеш сървърът изпрати следната FTP команда:

          +
          +
          %f
          +
          + +

          Сървърът даде следния отговор:

          +
          +
          %F
          +
          + +

          FTP сървърът няма права или достатъчно място за съхранение на файла. Проверете пътя, правата за достъп, свободното дисково пространство, и опитайте отново.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_FTP_PUT_MODIFIED squid-5.9/errors/bg/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/bg/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_FTP_PUT_MODIFIED 2023-05-01 10:37:22.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Операцията е успешна.

          +

          Файлът е обновен

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_FTP_UNAVAILABLE squid-5.9/errors/bg/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/bg/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_FTP_UNAVAILABLE 2023-05-01 10:37:22.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

          FTP сървърът е претоварен и не може да бъде изтеглен файлът: %U

          + +

          Кеш сървърът изпрати следната FTP команда:

          + +
          +
          %f
          +
          + +

          Сървърът даде следния отговор:

          +
          +
          %F
          +
          %g
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_GATEWAY_FAILURE squid-5.9/errors/bg/ERR_GATEWAY_FAILURE --- squid-5.8/errors/bg/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_GATEWAY_FAILURE 2023-05-01 10:37:22.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Gateway Proxy Failure

          +
          + +

          Непоправима софтуерна грешка или проблем в конфигурацията не позволява тази заявка да бъде завършена.

          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_ICAP_FAILURE squid-5.9/errors/bg/ERR_ICAP_FAILURE --- squid-5.8/errors/bg/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_ICAP_FAILURE 2023-05-01 10:37:22.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Грешка на ICAP протокола.

          +
          + +

          Операционната система даде следното съобщение: %E

          + +

          Неуспешна ICAP комуникация.

          + +

          Възможни грешки:

          +
            +
          • ICAP сървърът е недостъпен.

          • +
          • Невалиден отговор от ICAP сървъра.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_INVALID_REQ squid-5.9/errors/bg/ERR_INVALID_REQ --- squid-5.8/errors/bg/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_INVALID_REQ 2023-05-01 10:37:22.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

          При опит за обработка на заявката възникна следната грешка - Невалидна заявка:

          + +
          +
          %R
          +
          + +

          Възможни грешки:

          +
            +
          • Липсващ или непознат метод за достъп.

          • +
          • Липсващ адрес.

          • +
          • Липсващ HTTP идентификатор (HTTP/1.0).

          • +
          • Заявката е прекалено голяма.

          • +
          • Липсващо поле Content-Length за заявка от тип POST или PUT.

          • +
          • Невалиден символ в името на сървъра (напр. символът за подчертаване е недопустим)

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

          • +
          + +

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

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_INVALID_RESP squid-5.9/errors/bg/ERR_INVALID_RESP --- squid-5.8/errors/bg/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_INVALID_RESP 2023-05-01 10:37:23.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

          При опит за обработка на заявката възникна следната грешка - Невалиден отговор:

          + +
          +
          %R
          +
          + +

          Отговорът на HTTP заявката, получен от отсрещния сървър, е неразбираем или невалиден. Моля свържете се със съответния администратор.

          + +

          Ако Ви е необходимо, Вашият кеш администратор може би е в състояние да Ви достави по-подробни данни за възникналия проблем.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_INVALID_URL squid-5.9/errors/bg/ERR_INVALID_URL --- squid-5.8/errors/bg/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_INVALID_URL 2023-05-01 10:37:23.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Невалиден адрес

          +
          + +

          Неправилен адрес.

          + +

          Възможни грешки:

          +
            +
          • Липсващ или невалиден протокол за достъп (трябва да е http:// или нещо подобно)

          • +
          • Липсващо име на сървъра.

          • +
          • Невалиден double-escape символ в адреса

          • +
          • Невалиден символ в името на сървъра (напр. символът за подчертаване е недопустим)

          • +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_LIFETIME_EXP squid-5.9/errors/bg/ERR_LIFETIME_EXP --- squid-5.8/errors/bg/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_LIFETIME_EXP 2023-05-01 10:37:23.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Превишено максимално допустимо време за съществуване на връзката.

          +
          + +

          Кеш сървърът прекрати заявката, защото тя продължи повече от максимално допустимото време.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_NO_RELAY squid-5.9/errors/bg/ERR_NO_RELAY --- squid-5.8/errors/bg/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_NO_RELAY 2023-05-01 10:37:23.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Няма конфигуриран WAIS Relay

          +
          + +

          Няма дефиниран WAIS Relay за този кеш сървър. Обърнете се към администратора.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/bg/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/bg/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:37:23.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Подадена е заявка за обект, който не се намира в кеша, а попада в обсега на директивата only-if-cached.

          +
          + +

          Подадена е заявка за обект, който не се намира в кеша, а попада в обсега на директивата only-if-cached. За да бъде изпълнена заявката, документът трябва да бъде изтеглен наново или да бъде проверена неговата валидност, което е недопустимо поради директивата only-if-cached.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/error-details.txt squid-5.9/errors/bg/error-details.txt --- squid-5.8/errors/bg/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/error-details.txt 2023-05-01 10:37:26.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/bg/ERR_PRECONDITION_FAILED squid-5.9/errors/bg/ERR_PRECONDITION_FAILED --- squid-5.8/errors/bg/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_PRECONDITION_FAILED 2023-05-01 10:37:23.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Precondition Failed.

          +
          + +

          This means:

          +
          +

          Поне едно необходимо условие, указано от клиента в хедъра на заявката, не е изпълнено.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/bg/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/bg/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:37:24.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_READ_ERROR squid-5.9/errors/bg/ERR_READ_ERROR --- squid-5.8/errors/bg/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_READ_ERROR 2023-05-01 10:37:24.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Грешка при четене

          +
          + +

          Операционната система даде следното съобщение: %E

          + +

          Възникна грешка при четене на данни от мрежата. Моля, опитайте отново да направите Вашата заявка.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_READ_TIMEOUT squid-5.9/errors/bg/ERR_READ_TIMEOUT --- squid-5.8/errors/bg/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_READ_TIMEOUT 2023-05-01 10:37:24.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Изтече максимално допустимото време за четене

          +
          + +

          Операционната система даде следното съобщение: %E

          + +

          Изтече максимално допустимото време за четене на данни от мрежата. Мрежата или сървърът са недостъпни или претоварени. Моля, опитайте отново да направите Вашата заявка.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/bg/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/bg/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:37:24.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Неуспешен опит за осъществяване на криптирана връзка към %l

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Proxy сървърът и отсрещният web сървър не могат да договорят взаимно приемливи параметри за осъществяване на връзката. Възможно е отсрещният web сървър да не приема криптирани връзки, или proxy сървърът да не приема за достатъчно нивото на сигурност на web сървъра.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_SHUTTING_DOWN squid-5.9/errors/bg/ERR_SHUTTING_DOWN --- squid-5.8/errors/bg/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_SHUTTING_DOWN 2023-05-01 10:37:24.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +

          Кеш сървърът е в процес на рестартиране и в момента не може да изпълни вашата заявка. Моля опитайте отново след няколко минути.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_SOCKET_FAILURE squid-5.9/errors/bg/ERR_SOCKET_FAILURE --- squid-5.8/errors/bg/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_SOCKET_FAILURE 2023-05-01 10:37:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Грешка при Socket операция

          +
          + +

          Операционната система даде следното съобщение: %E

          + +

          Кеш сървърът не е в състояние да създаде TCP socket, вероятно поради голямо натоварване. Моля, опитайте отново да направите Вашата заявка.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_TOO_BIG squid-5.9/errors/bg/ERR_TOO_BIG --- squid-5.8/errors/bg/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_TOO_BIG 2023-05-01 10:37:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Заявката или отговорът са прекалено големи.

          +
          + +

          Ако Вашата заявка е от тип POST или PUT, то данните, които се опитвате да изпратите, са с прекалено голям обем.

          +

          Ако Вашата заявка е от тип GET, то файлът, който се опитвате да свалите, е прекалено голям.

          +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_UNSUP_HTTPVERSION squid-5.9/errors/bg/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/bg/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_UNSUP_HTTPVERSION 2023-05-01 10:37:25.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Неподдържана версия на HTTP протокола.

          +
          +
          + +
          +

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

          + +
          +

          Неподдържана версия на HTTP протокола.

          +
          + +

          Кеш сървърът не поддържа версията на HTTP протокола, която се опитвате да ползвате.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_UNSUP_REQ squid-5.9/errors/bg/ERR_UNSUP_REQ --- squid-5.8/errors/bg/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_UNSUP_REQ 2023-05-01 10:37:25.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Сървърът не поддържа метода и/или протокола, посочен в заявката

          +
          + +

          Кеш сървърът не поддържа всички методи на заявка за всички протоколи. Например, не можете да заявите метод POST за протокол Gopher.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_URN_RESOLVE squid-5.9/errors/bg/ERR_URN_RESOLVE --- squid-5.8/errors/bg/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_URN_RESOLVE 2023-05-01 10:37:25.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ГРЕШКА: Заявената страница не може да бъде изтеглена + + +
          +

          ГРЕШКА

          +

          Недостатъчна информация за локализиране на обекта

          +
          +
          + +
          +

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

          + +
          +

          Проблем при локализиране на обекта.

          +
          + +

          Не очаквайте прекалено много на този етап :)

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_WRITE_ERROR squid-5.9/errors/bg/ERR_WRITE_ERROR --- squid-5.8/errors/bg/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_WRITE_ERROR 2023-05-01 10:37:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Грешка при запис

          +
          + +

          Операционната система даде следното съобщение: %E

          + +

          Възникна грешка при изпращане на данни в мрежата. Моля, опитайте отново да направите Вашата заявка.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/bg/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/bg/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/bg/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/bg/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:37:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ГРЕШКА: Заявената страница е недостъпна. + + +
          +

          ГРЕШКА

          +

          Заявеният адрес е недостъпен.

          +
          +
          + +
          +

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

          + +
          +

          Отговор с нулева големина

          +
          + +

          Кеш сървърът не получи никакви данни за тази заявка.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_ACCESS_DENIED squid-5.9/errors/ca/ERR_ACCESS_DENIED --- squid-5.8/errors/ca/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_ACCESS_DENIED 2023-05-01 10:37:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          Accés no autoritzat.

          +
          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/ca/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/ca/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:37:26.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

          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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_AGENT_CONFIGURE squid-5.9/errors/ca/ERR_AGENT_CONFIGURE --- squid-5.8/errors/ca/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_AGENT_CONFIGURE 2023-05-01 10:37:26.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +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.
          • +
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_AGENT_WPAD squid-5.9/errors/ca/ERR_AGENT_WPAD --- squid-5.8/errors/ca/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_AGENT_WPAD 2023-05-01 10:37:26.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +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
          • +
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/ca/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/ca/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:37:26.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: Accés denegat a la cache + + +
          +

          ERROR

          +

          Accés denegat a la cache

          +
          +
          + +
          +

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

          + +
          +

          Accés denegat a la cache

          +
          + +

          L'accés a l'objecte %U no està permès sense autentificació prèvia.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/ca/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/ca/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:37:27.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: Accés denegat a l'administració de la cache + + +
          +

          ERROR

          +

          Accés denegat a l'administració de la cache.

          +
          +
          + +
          +

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

          + +
          +

          Accés denegat a l'administració de la cache.

          +
          + +

          L'accés a l'objecte %U no està permès sense autentificació prèvia.

          + +

          Contacteu ambel vostre administrador de cache. Si vosaltres sou l'administrador d'aquesta cache, llegiu-vos la documentació de l'Squid en l'apartat de l'administrador de la cache.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_CANNOT_FORWARD squid-5.9/errors/ca/ERR_CANNOT_FORWARD --- squid-5.8/errors/ca/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_CANNOT_FORWARD 2023-05-01 10:37:27.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          No ha estat possible de reenviar aquesta petició.

          +
          + +

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

          + +

          Some possible problems are:

          +
            +
          • 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.
          • +
          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_CONFLICT_HOST squid-5.9/errors/ca/ERR_CONFLICT_HOST --- squid-5.8/errors/ca/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_CONFLICT_HOST 2023-05-01 10:37:27.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_CONNECT_FAIL squid-5.9/errors/ca/ERR_CONNECT_FAIL --- squid-5.8/errors/ca/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_CONNECT_FAIL 2023-05-01 10:37:27.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          Connection to %I failed.

          +
          + +

          El sistema diu: %E

          + +

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

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_DIR_LISTING squid-5.9/errors/ca/ERR_DIR_LISTING --- squid-5.8/errors/ca/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_DIR_LISTING 2023-05-01 10:37:27.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Directori Rail (Directori Rail)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_DNS_FAIL squid-5.9/errors/ca/ERR_DNS_FAIL --- squid-5.8/errors/ca/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_DNS_FAIL 2023-05-01 10:37:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          No ha estat possible determinar l'adreça IP del servidor %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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_ESI squid-5.9/errors/ca/ERR_ESI --- squid-5.8/errors/ca/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_ESI 2023-05-01 10:37:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

          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-5.8/errors/ca/ERR_FORWARDING_DENIED squid-5.9/errors/ca/ERR_FORWARDING_DENIED --- squid-5.8/errors/ca/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_FORWARDING_DENIED 2023-05-01 10:37:28.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          Reenviament denegat.

          +
          + +

          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.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_FTP_DISABLED squid-5.9/errors/ca/ERR_FTP_DISABLED --- squid-5.8/errors/ca/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_FTP_DISABLED 2023-05-01 10:37:28.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          El protocol FTP està deshabilitat.

          +
          + +

          Aquesta cache no accepta connexions FTP.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_FTP_FAILURE squid-5.9/errors/ca/ERR_FTP_FAILURE --- squid-5.8/errors/ca/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_FTP_FAILURE 2023-05-01 10:37:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

          S'ha produït un error FTP mentre s'intentava llegir la URL: %U

          + +

          Squid sent the following FTP command:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_FTP_FORBIDDEN squid-5.9/errors/ca/ERR_FTP_FORBIDDEN --- squid-5.8/errors/ca/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_FTP_FORBIDDEN 2023-05-01 10:37:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

          S'ha produït un error en l'autentificació FTP mentre s'intentava llegir la URL: %U

          + +

          Squid sent the following FTP command:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_FTP_NOT_FOUND squid-5.9/errors/ca/ERR_FTP_NOT_FOUND --- squid-5.8/errors/ca/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_FTP_NOT_FOUND 2023-05-01 10:37:29.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

          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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_FTP_PUT_CREATED squid-5.9/errors/ca/ERR_FTP_PUT_CREATED --- squid-5.8/errors/ca/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_FTP_PUT_CREATED 2023-05-01 10:37:29.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operació completada

          +

          Fitxer creat

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_FTP_PUT_ERROR squid-5.9/errors/ca/ERR_FTP_PUT_ERROR --- squid-5.8/errors/ca/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_FTP_PUT_ERROR 2023-05-01 10:37:29.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: FTP upload failed + + +
          +

          ERROR

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          S'ha produït un error FTP mentre s'intentava llegir la 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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_FTP_PUT_MODIFIED squid-5.9/errors/ca/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/ca/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_FTP_PUT_MODIFIED 2023-05-01 10:37:29.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operació completada

          +

          Fitxer actualitzat

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_FTP_UNAVAILABLE squid-5.9/errors/ca/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/ca/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_FTP_UNAVAILABLE 2023-05-01 10:37:29.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

          El servidor FTP estava massa ocupat quan intentava mostrar la URL: %U

          + +

          Squid sent the following FTP command:

          + +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_GATEWAY_FAILURE squid-5.9/errors/ca/ERR_GATEWAY_FAILURE --- squid-5.8/errors/ca/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_GATEWAY_FAILURE 2023-05-01 10:37:30.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

          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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_ICAP_FAILURE squid-5.9/errors/ca/ERR_ICAP_FAILURE --- squid-5.8/errors/ca/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_ICAP_FAILURE 2023-05-01 10:37:30.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

          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.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_INVALID_REQ squid-5.9/errors/ca/ERR_INVALID_REQ --- squid-5.8/errors/ca/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_INVALID_REQ 2023-05-01 10:37:30.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +
          %R
          +
          + +

          Some possible problems are:

          +
            +
          • Mètode de petició desconegut o absent.

          • +
          • no hi ha URL.

          • +
          • Falta l'identificador HTTP (HTTP/1.0).

          • +
          • 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.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_INVALID_RESP squid-5.9/errors/ca/ERR_INVALID_RESP --- squid-5.8/errors/ca/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_INVALID_RESP 2023-05-01 10:37:30.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_INVALID_URL squid-5.9/errors/ca/ERR_INVALID_URL --- squid-5.8/errors/ca/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_INVALID_URL 2023-05-01 10:37:30.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          URL incorrecte.

          +
          + +

          Alguna part de la URL no és correcte.

          + +

          Some possible problems are:

          +
            +
          • Protocol d'accés absent o incorrecte ( http:// o similar )

          • +
          • Falta el nom del servidor.

          • +
          • La URL conté un doble caràcter d'escapament.

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

          • +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_LIFETIME_EXP squid-5.9/errors/ca/ERR_LIFETIME_EXP --- squid-5.8/errors/ca/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_LIFETIME_EXP 2023-05-01 10:37:30.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          La connexió ha excedit el temps màxim

          +
          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_NO_RELAY squid-5.9/errors/ca/ERR_NO_RELAY --- squid-5.8/errors/ca/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_NO_RELAY 2023-05-01 10:37:31.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          No hi ha reenviament de protocol WAIS

          +
          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/ca/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/ca/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:37:31.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

          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.

          +
          + +

          Heu fet una petició amb la directiva de control de cache only-if-cached. El document no s'ha trobat a la cache, o necessitava revalidació, expressament prohibida per la directiva only-if-cached.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/error-details.txt squid-5.9/errors/ca/error-details.txt --- squid-5.8/errors/ca/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/error-details.txt 2023-05-01 10:37:33.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/ca/ERR_PRECONDITION_FAILED squid-5.9/errors/ca/ERR_PRECONDITION_FAILED --- squid-5.8/errors/ca/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_PRECONDITION_FAILED 2023-05-01 10:37:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/ca/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/ca/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:37:31.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_READ_ERROR squid-5.9/errors/ca/ERR_READ_ERROR --- squid-5.8/errors/ca/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_READ_ERROR 2023-05-01 10:37:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          Error de lectura

          +
          + +

          El sistema diu: %E

          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_READ_TIMEOUT squid-5.9/errors/ca/ERR_READ_TIMEOUT --- squid-5.8/errors/ca/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_READ_TIMEOUT 2023-05-01 10:37:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          S'ha excedit el temps de lectura

          +
          + +

          El sistema diu: %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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/ca/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/ca/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:37:32.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          Failed to establish a secure connection to %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_SHUTTING_DOWN squid-5.9/errors/ca/ERR_SHUTTING_DOWN --- squid-5.8/errors/ca/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_SHUTTING_DOWN 2023-05-01 10:37:32.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

          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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_SOCKET_FAILURE squid-5.9/errors/ca/ERR_SOCKET_FAILURE --- squid-5.8/errors/ca/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_SOCKET_FAILURE 2023-05-01 10:37:32.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          Errada de connexió de xarxa

          +
          + +

          El sistema diu: %E

          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_TOO_BIG squid-5.9/errors/ca/ERR_TOO_BIG --- squid-5.8/errors/ca/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_TOO_BIG 2023-05-01 10:37:32.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          Si esteu fent una petició de tipus POST o PUT, llavors el cos de la petició és massa llarg (el fitxer que intenteu enviar).

          +

          Si esteu intentant descarregar-vos algunfitxer, aques és massa gros.

          +

          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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_UNSUP_HTTPVERSION squid-5.9/errors/ca/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/ca/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_UNSUP_HTTPVERSION 2023-05-01 10:37:32.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_UNSUP_REQ squid-5.9/errors/ca/ERR_UNSUP_REQ --- squid-5.8/errors/ca/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_UNSUP_REQ 2023-05-01 10:37:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          Mètode i protocol no admesos

          +
          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_URN_RESOLVE squid-5.9/errors/ca/ERR_URN_RESOLVE --- squid-5.8/errors/ca/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_URN_RESOLVE 2023-05-01 10:37:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          ERROR

          +

          No es pot mostrar la URN que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          No s'ha pogut resoldre la URN

          +
          + +

          Ei :) no esperis massa de les URN a %T !!

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_WRITE_ERROR squid-5.9/errors/ca/ERR_WRITE_ERROR --- squid-5.8/errors/ca/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_WRITE_ERROR 2023-05-01 10:37:33.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          Error d'escriptura

          +
          + +

          El sistema diu: %E

          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ca/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/ca/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/ca/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ca/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:37:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: No es pot mostrar la URL que heu sol.licitat + + +
          +

          ERROR

          +

          No es pot mostrar la URL que heu sol.licitat

          +
          +
          + +
          +

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

          + +
          +

          Zero Sized Reply

          +
          + +

          Squid did not receive any data for this request.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_ACCESS_DENIED squid-5.9/errors/cs/ERR_ACCESS_DENIED --- squid-5.8/errors/cs/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_ACCESS_DENIED 2023-05-01 10:37:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Přístup odepřen.

          +
          + +

          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-5.8/errors/cs/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/cs/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/cs/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:37:33.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          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-5.8/errors/cs/ERR_AGENT_CONFIGURE squid-5.9/errors/cs/ERR_AGENT_CONFIGURE --- squid-5.8/errors/cs/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_AGENT_CONFIGURE 2023-05-01 10:37:34.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          CHYBA

          +

          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-5.8/errors/cs/ERR_AGENT_WPAD squid-5.9/errors/cs/ERR_AGENT_WPAD --- squid-5.8/errors/cs/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_AGENT_WPAD 2023-05-01 10:37:34.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          CHYBA

          +

          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-5.8/errors/cs/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/cs/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/cs/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:37:34.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +CHYBA: Přístup k cache odepřen + + +
          +

          CHYBA

          +

          Přístup k cache odepřen.

          +
          +
          + +
          +

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

          + +
          +

          Přístup k cache odepřen.

          +
          + +

          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-5.8/errors/cs/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/cs/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/cs/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:37:34.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +CHYBA: Přístup ke správci cache odepřen + + +
          +

          CHYBA

          +

          Přístup ke správci cache odepřen.

          +
          +
          + +
          +

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

          + +
          +

          Přístup ke správci cache odepřen.

          +
          + +

          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-5.8/errors/cs/ERR_CANNOT_FORWARD squid-5.9/errors/cs/ERR_CANNOT_FORWARD --- squid-5.8/errors/cs/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_CANNOT_FORWARD 2023-05-01 10:37:34.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_CONFLICT_HOST squid-5.9/errors/cs/ERR_CONFLICT_HOST --- squid-5.8/errors/cs/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_CONFLICT_HOST 2023-05-01 10:37:35.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_CONNECT_FAIL squid-5.9/errors/cs/ERR_CONNECT_FAIL --- squid-5.8/errors/cs/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_CONNECT_FAIL 2023-05-01 10:37:35.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Připojení k %I selhalo.

          +
          + +

          Vzdálený systém odpověděl: %E

          + +

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

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_DIR_LISTING squid-5.9/errors/cs/ERR_DIR_LISTING --- squid-5.8/errors/cs/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_DIR_LISTING 2023-05-01 10:37:35.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Adresář: %U + + +
          +

          Adresář: %U/

          +
          +
          + +
          +

          Obsah adresáře:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_DNS_FAIL squid-5.9/errors/cs/ERR_DNS_FAIL --- squid-5.8/errors/cs/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_DNS_FAIL 2023-05-01 10:37:35.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Jméno serveru není možno převést na IP adresu. %H

          +
          + +

          DNS server odpověděl:

          +
          +
          %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-5.8/errors/cs/ERR_ESI squid-5.9/errors/cs/ERR_ESI --- squid-5.8/errors/cs/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_ESI 2023-05-01 10:37:35.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Selhalo zpracování ESI.

          +
          + +

          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-5.8/errors/cs/ERR_FORWARDING_DENIED squid-5.9/errors/cs/ERR_FORWARDING_DENIED --- squid-5.8/errors/cs/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_FORWARDING_DENIED 2023-05-01 10:37:35.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          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-5.8/errors/cs/ERR_FTP_DISABLED squid-5.9/errors/cs/ERR_FTP_DISABLED --- squid-5.8/errors/cs/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_FTP_DISABLED 2023-05-01 10:37:36.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          FTP je zakázáno

          +
          + +

          Tento cache server nepodporuje protokol FTP.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_FTP_FAILURE squid-5.9/errors/cs/ERR_FTP_FAILURE --- squid-5.8/errors/cs/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_FTP_FAILURE 2023-05-01 10:37:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          Došlo k chybě protokolu FTP při pokusu získat URL: %U

          + +

          odeslal Squid následující FTP příkaz:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_FTP_FORBIDDEN squid-5.9/errors/cs/ERR_FTP_FORBIDDEN --- squid-5.8/errors/cs/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_FTP_FORBIDDEN 2023-05-01 10:37:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          Došlo k chybě při autentizaci FTP při pokusu získat URL: %U

          + +

          odeslal Squid následující FTP příkaz:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_FTP_NOT_FOUND squid-5.9/errors/cs/ERR_FTP_NOT_FOUND --- squid-5.8/errors/cs/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_FTP_NOT_FOUND 2023-05-01 10:37:36.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          The following URL could not be retrieved: %U

          + +

          odeslal Squid následující FTP příkaz:

          +
          +
          %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-5.8/errors/cs/ERR_FTP_PUT_CREATED squid-5.9/errors/cs/ERR_FTP_PUT_CREATED --- squid-5.8/errors/cs/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_FTP_PUT_CREATED 2023-05-01 10:37:36.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operace proběhla úspěšně

          +

          Soubor vytvořen

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_FTP_PUT_ERROR squid-5.9/errors/cs/ERR_FTP_PUT_ERROR --- squid-5.8/errors/cs/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_FTP_PUT_ERROR 2023-05-01 10:37:36.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +CHYBA: Selhalo nahrávání na FTP + + +
          +

          CHYBA

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          Došlo k chybě protokolu FTP při pokusu získat URL: %U

          + +

          odeslal Squid následující FTP příkaz:

          +
          +
          %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-5.8/errors/cs/ERR_FTP_PUT_MODIFIED squid-5.9/errors/cs/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/cs/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_FTP_PUT_MODIFIED 2023-05-01 10:37:37.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operace proběhla úspěšně

          +

          Soubor aktualizován

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_FTP_UNAVAILABLE squid-5.9/errors/cs/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/cs/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_FTP_UNAVAILABLE 2023-05-01 10:37:37.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +

          odeslal Squid následující FTP příkaz:

          + +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_GATEWAY_FAILURE squid-5.9/errors/cs/ERR_GATEWAY_FAILURE --- squid-5.8/errors/cs/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_GATEWAY_FAILURE 2023-05-01 10:37:37.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          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-5.8/errors/cs/ERR_ICAP_FAILURE squid-5.9/errors/cs/ERR_ICAP_FAILURE --- squid-5.8/errors/cs/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_ICAP_FAILURE 2023-05-01 10:37:37.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Chyba protokolu ICAP.

          +
          + +

          Vzdálený systém odpověděl: %E

          + +

          This means that some aspect of the ICAP communication failed.

          + +

          Some possible problems are:

          +
            +
          • The ICAP server is not reachable.

          • +
          • Ze serveru ICAP byla přijata neplatná odpověď.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_INVALID_REQ squid-5.9/errors/cs/ERR_INVALID_REQ --- squid-5.8/errors/cs/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_INVALID_REQ 2023-05-01 10:37:37.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          Došlo k chybě Invalid Request (Neplatný požadavek) během zpracování požadavku:

          + +
          +
          %R
          +
          + +

          Some possible problems are:

          +
            +
          • Chybná nebo chybějící HTTP metoda (POST, GET)

          • +
          • Chybějící URL.

          • +
          • Chybějící identifikátor HTTP (HTTP/1.0).

          • +
          • Požadavek může být příliš velký

          • +
          • Chybí 'Content-Lenght' požadavku POST nebo PUT.

          • +
          • 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.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_INVALID_RESP squid-5.9/errors/cs/ERR_INVALID_RESP --- squid-5.8/errors/cs/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_INVALID_RESP 2023-05-01 10:37:38.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          Došlo k chybě Invalid Response (Neplatná odpověď) během zpracování požadavku:

          + +
          +
          %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-5.8/errors/cs/ERR_INVALID_URL squid-5.9/errors/cs/ERR_INVALID_URL --- squid-5.8/errors/cs/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_INVALID_URL 2023-05-01 10:37:38.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Neplatná URL

          +
          + +

          Některá část URL je chybná.

          + +

          Some possible problems are:

          +
            +
          • Missing or incorrect access protocol (should be http:// or similar)

          • +
          • Chybějící hostname

          • +
          • Chybný double-escape v URL cestě

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

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_LIFETIME_EXP squid-5.9/errors/cs/ERR_LIFETIME_EXP --- squid-5.8/errors/cs/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_LIFETIME_EXP 2023-05-01 10:37:38.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Čas pro spojení vypršel

          +
          + +

          Squid stornoval požadavek z důvodu překročení maximální délky trvání spojení.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_NO_RELAY squid-5.9/errors/cs/ERR_NO_RELAY --- squid-5.8/errors/cs/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_NO_RELAY 2023-05-01 10:37:38.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          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-5.8/errors/cs/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/cs/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/cs/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:37:38.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Požadovaný dokument se nenachází v cachi, přičemž byla specifikována direktiva only-if-cached.

          +
          + +

          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-5.8/errors/cs/error-details.txt squid-5.9/errors/cs/error-details.txt --- squid-5.8/errors/cs/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/error-details.txt 2023-05-01 10:37:41.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/cs/ERR_PRECONDITION_FAILED squid-5.9/errors/cs/ERR_PRECONDITION_FAILED --- squid-5.8/errors/cs/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_PRECONDITION_FAILED 2023-05-01 10:37:38.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/cs/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/cs/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:37:39.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_READ_ERROR squid-5.9/errors/cs/ERR_READ_ERROR --- squid-5.8/errors/cs/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_READ_ERROR 2023-05-01 10:37:39.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Chyba při čtení

          +
          + +

          Vzdálený systém odpověděl: %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-5.8/errors/cs/ERR_READ_TIMEOUT squid-5.9/errors/cs/ERR_READ_TIMEOUT --- squid-5.8/errors/cs/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_READ_TIMEOUT 2023-05-01 10:37:39.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Read Timeout

          +
          + +

          Vzdálený systém odpověděl: %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-5.8/errors/cs/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/cs/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/cs/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:37:39.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Selhalo vytvoření zabezpečeného připojení k %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/cs/ERR_SHUTTING_DOWN squid-5.9/errors/cs/ERR_SHUTTING_DOWN --- squid-5.8/errors/cs/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_SHUTTING_DOWN 2023-05-01 10:37:39.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          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-5.8/errors/cs/ERR_SOCKET_FAILURE squid-5.9/errors/cs/ERR_SOCKET_FAILURE --- squid-5.8/errors/cs/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_SOCKET_FAILURE 2023-05-01 10:37:39.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Socket Failure

          +
          + +

          Vzdálený systém odpověděl: %E

          + +

          Squid nemohl vytvořit TCP socket pravděpodobně v důsledku přetížení. Opakujte prosím Váš požadavek.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_TOO_BIG squid-5.9/errors/cs/ERR_TOO_BIG --- squid-5.8/errors/cs/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_TOO_BIG 2023-05-01 10:37:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

          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-5.8/errors/cs/ERR_UNSUP_HTTPVERSION squid-5.9/errors/cs/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/cs/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_UNSUP_HTTPVERSION 2023-05-01 10:37:40.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          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-5.8/errors/cs/ERR_UNSUP_REQ squid-5.9/errors/cs/ERR_UNSUP_REQ --- squid-5.8/errors/cs/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_UNSUP_REQ 2023-05-01 10:37:40.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Request Method and Protocol

          +
          + +

          Squid nepodporuje všechny typy metod u všech protokolů. Např. není možno použit metodu POST u služby GOPHER.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_URN_RESOLVE squid-5.9/errors/cs/ERR_URN_RESOLVE --- squid-5.8/errors/cs/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_URN_RESOLVE 2023-05-01 10:37:40.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          CHYBA

          +

          Nelze získat URL pro požadované URN

          +
          +
          + +
          +

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

          + +
          +

          Nelze přeložit URN

          +
          + +

          Hey, neočekáváte příliš mnoho od URN na %T :)

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_WRITE_ERROR squid-5.9/errors/cs/ERR_WRITE_ERROR --- squid-5.8/errors/cs/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_WRITE_ERROR 2023-05-01 10:37:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Write Error

          +
          + +

          Vzdálený systém odpověděl: %E

          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/cs/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/cs/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/cs/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/cs/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:37:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Nelze získat požadované URL + + +
          +

          CHYBA

          +

          Požadovaný dokument je nedostupný

          +
          +
          + +
          +

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

          + +
          +

          Zero Sized Reply

          +
          + +

          Squid neobdržel v odpovědi na tento dotaz žádná data.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_ACCESS_DENIED squid-5.9/errors/da/ERR_ACCESS_DENIED --- squid-5.8/errors/da/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_ACCESS_DENIED 2023-05-01 10:37:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Adgang Nægtet.

          +
          + +

          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-5.8/errors/da/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/da/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/da/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:37:41.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          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-5.8/errors/da/ERR_AGENT_CONFIGURE squid-5.9/errors/da/ERR_AGENT_CONFIGURE --- squid-5.8/errors/da/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_AGENT_CONFIGURE 2023-05-01 10:37:41.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          FEJL

          +

          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-5.8/errors/da/ERR_AGENT_WPAD squid-5.9/errors/da/ERR_AGENT_WPAD --- squid-5.8/errors/da/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_AGENT_WPAD 2023-05-01 10:37:41.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          FEJL

          +

          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-5.8/errors/da/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/da/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/da/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:37:41.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEJL: Cache Adgang Nægtet + + +
          +

          FEJL

          +

          Cache Adgang Nægtet.

          +
          +
          + +
          +

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

          + +
          +

          Cache Adgang Nægtet.

          +
          + +

          Du har desværre ikke lov til at hente %U fra denne cache førend du har autenticieret dig selv.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/da/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/da/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:37:42.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEJL: Cache Administrator Adgang Nægtet + + +
          +

          FEJL

          +

          Cache Administrator Adgang Nægtet.

          +
          +
          + +
          +

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

          + +
          +

          Cache Administrator Adgang Nægtet.

          +
          + +

          Du har desværre ikke lov til at hente %U fra denne cache førend du har autenticieret dig selv.

          + +

          Kontakt cache administratoren hvis du har problemer med at autenticiere dig eller hvis du er cache administratoren, læs Squid dokumentationen for cache administrator interfacet og check cache loggen for mere detaljerede fejlmeddelelser.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_CANNOT_FORWARD squid-5.9/errors/da/ERR_CANNOT_FORWARD --- squid-5.8/errors/da/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_CANNOT_FORWARD 2023-05-01 10:37:42.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Kunne ikke vidersende forespørgslen.

          +
          + +

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

          + +

          Mulige problemer kan være:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_CONFLICT_HOST squid-5.9/errors/da/ERR_CONFLICT_HOST --- squid-5.8/errors/da/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_CONFLICT_HOST 2023-05-01 10:37:42.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          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.

          + +

          Mulige problemer kan være:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_CONNECT_FAIL squid-5.9/errors/da/ERR_CONNECT_FAIL --- squid-5.8/errors/da/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_CONNECT_FAIL 2023-05-01 10:37:42.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Connection to %I failed.

          +
          + +

          Systemet returnerede: %E

          + +

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

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_DIR_LISTING squid-5.9/errors/da/ERR_DIR_LISTING --- squid-5.8/errors/da/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_DIR_LISTING 2023-05-01 10:37:42.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_DNS_FAIL squid-5.9/errors/da/ERR_DNS_FAIL --- squid-5.8/errors/da/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_DNS_FAIL 2023-05-01 10:37:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          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-5.8/errors/da/ERR_ESI squid-5.9/errors/da/ERR_ESI --- squid-5.8/errors/da/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_ESI 2023-05-01 10:37:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          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-5.8/errors/da/ERR_FORWARDING_DENIED squid-5.9/errors/da/ERR_FORWARDING_DENIED --- squid-5.8/errors/da/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_FORWARDING_DENIED 2023-05-01 10:37:43.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Videresendelse Nægtet.

          +
          + +

          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-5.8/errors/da/ERR_FTP_DISABLED squid-5.9/errors/da/ERR_FTP_DISABLED --- squid-5.8/errors/da/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_FTP_DISABLED 2023-05-01 10:37:43.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          FTP er slået fra

          +
          + +

          Denne cache understøtter ikke FTP.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_FTP_FAILURE squid-5.9/errors/da/ERR_FTP_FAILURE --- squid-5.8/errors/da/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_FTP_FAILURE 2023-05-01 10:37:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          En FTP protokol fejl opstod under hentning af føgende URL: %U

          + +

          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-5.8/errors/da/ERR_FTP_FORBIDDEN squid-5.9/errors/da/ERR_FTP_FORBIDDEN --- squid-5.8/errors/da/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_FTP_FORBIDDEN 2023-05-01 10:37:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          En FTP autenticierings fejl opstod under hentning af føgende URL: %U

          + +

          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-5.8/errors/da/ERR_FTP_NOT_FOUND squid-5.9/errors/da/ERR_FTP_NOT_FOUND --- squid-5.8/errors/da/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_FTP_NOT_FOUND 2023-05-01 10:37:44.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          Den føgende URL kunne ikke hentes: %U

          + +

          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-5.8/errors/da/ERR_FTP_PUT_CREATED squid-5.9/errors/da/ERR_FTP_PUT_CREATED --- squid-5.8/errors/da/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_FTP_PUT_CREATED 2023-05-01 10:37:44.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Handlingen lykkedes

          +

          Fil oprettet

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_FTP_PUT_ERROR squid-5.9/errors/da/ERR_FTP_PUT_ERROR --- squid-5.8/errors/da/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_FTP_PUT_ERROR 2023-05-01 10:37:44.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: FTP upload failed + + +
          +

          FEJL

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          En FTP protokol fejl opstod under hentning af føgende URL: %U

          + +

          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-5.8/errors/da/ERR_FTP_PUT_MODIFIED squid-5.9/errors/da/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/da/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_FTP_PUT_MODIFIED 2023-05-01 10:37:44.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Handlingen lykkedes

          +

          Fil opdateret

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_FTP_UNAVAILABLE squid-5.9/errors/da/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/da/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_FTP_UNAVAILABLE 2023-05-01 10:37:44.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          FTP serveren var optaget da føgende URL skulle hentes: %U

          + +

          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-5.8/errors/da/ERR_GATEWAY_FAILURE squid-5.9/errors/da/ERR_GATEWAY_FAILURE --- squid-5.8/errors/da/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_GATEWAY_FAILURE 2023-05-01 10:37:44.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          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-5.8/errors/da/ERR_ICAP_FAILURE squid-5.9/errors/da/ERR_ICAP_FAILURE --- squid-5.8/errors/da/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_ICAP_FAILURE 2023-05-01 10:37:45.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          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:

          +
            +
          • The ICAP server is not reachable.

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

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_INVALID_REQ squid-5.9/errors/da/ERR_INVALID_REQ --- squid-5.8/errors/da/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_INVALID_REQ 2023-05-01 10:37:45.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +
          %R
          +
          + +

          Mulige problemer kan være:

          +
            +
          • Manglende eller ukendt forespørgsels metode.

          • +
          • Manglende URL.

          • +
          • 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.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_INVALID_RESP squid-5.9/errors/da/ERR_INVALID_RESP --- squid-5.8/errors/da/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_INVALID_RESP 2023-05-01 10:37:45.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          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-5.8/errors/da/ERR_INVALID_URL squid-5.9/errors/da/ERR_INVALID_URL --- squid-5.8/errors/da/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_INVALID_URL 2023-05-01 10:37:45.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          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-5.8/errors/da/ERR_LIFETIME_EXP squid-5.9/errors/da/ERR_LIFETIME_EXP --- squid-5.8/errors/da/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_LIFETIME_EXP 2023-05-01 10:37:45.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Levetiden for forbindelsen udløb

          +
          + +

          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-5.8/errors/da/ERR_NO_RELAY squid-5.9/errors/da/ERR_NO_RELAY --- squid-5.8/errors/da/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_NO_RELAY 2023-05-01 10:37:46.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Ingen WAIS Relæ

          +
          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/da/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/da/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:37:46.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          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.

          +
          + +

          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-5.8/errors/da/error-details.txt squid-5.9/errors/da/error-details.txt --- squid-5.8/errors/da/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/error-details.txt 2023-05-01 10:37:48.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/da/ERR_PRECONDITION_FAILED squid-5.9/errors/da/ERR_PRECONDITION_FAILED --- squid-5.8/errors/da/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_PRECONDITION_FAILED 2023-05-01 10:37:46.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/da/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/da/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:37:46.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_READ_ERROR squid-5.9/errors/da/ERR_READ_ERROR --- squid-5.8/errors/da/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_READ_ERROR 2023-05-01 10:37:46.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Læse fejl

          +
          + +

          Systemet returnerede: %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-5.8/errors/da/ERR_READ_TIMEOUT squid-5.9/errors/da/ERR_READ_TIMEOUT --- squid-5.8/errors/da/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_READ_TIMEOUT 2023-05-01 10:37:46.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          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-5.8/errors/da/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/da/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/da/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:37:47.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Failed to establish a secure connection to %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/da/ERR_SHUTTING_DOWN squid-5.9/errors/da/ERR_SHUTTING_DOWN --- squid-5.8/errors/da/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_SHUTTING_DOWN 2023-05-01 10:37:47.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          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-5.8/errors/da/ERR_SOCKET_FAILURE squid-5.9/errors/da/ERR_SOCKET_FAILURE --- squid-5.8/errors/da/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_SOCKET_FAILURE 2023-05-01 10:37:47.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Socket Fejl

          +
          + +

          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-5.8/errors/da/ERR_TOO_BIG squid-5.9/errors/da/ERR_TOO_BIG --- squid-5.8/errors/da/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_TOO_BIG 2023-05-01 10:37:47.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

          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-5.8/errors/da/ERR_UNSUP_HTTPVERSION squid-5.9/errors/da/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/da/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_UNSUP_HTTPVERSION 2023-05-01 10:37:47.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          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-5.8/errors/da/ERR_UNSUP_REQ squid-5.9/errors/da/ERR_UNSUP_REQ --- squid-5.8/errors/da/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_UNSUP_REQ 2023-05-01 10:37:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Uunderstøttet Forespørgsels Metode og Protokol

          +
          + +

          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-5.8/errors/da/ERR_URN_RESOLVE squid-5.9/errors/da/ERR_URN_RESOLVE --- squid-5.8/errors/da/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_URN_RESOLVE 2023-05-01 10:37:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          FEJL

          +

          URL for den angivne URN kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Kan Ikke Opløse URN

          +
          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_WRITE_ERROR squid-5.9/errors/da/ERR_WRITE_ERROR --- squid-5.8/errors/da/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_WRITE_ERROR 2023-05-01 10:37:48.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Skrive Fejl

          +
          + +

          Systemet returnerede: %E

          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/da/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/da/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/da/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/da/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:37:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEJL: Den angivne URL kunne ikke hentes + + +
          +

          FEJL

          +

          Den angivne URL kunne ikke hentes

          +
          +
          + +
          +

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

          + +
          +

          Nul Størrelse Svar

          +
          + +

          Squid did not receive any data for this request.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_ACCESS_DENIED squid-5.9/errors/de/ERR_ACCESS_DENIED --- squid-5.8/errors/de/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_ACCESS_DENIED 2023-05-01 10:37:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Zugriff verweigert.

          +
          + +

          Die Anfrage wurde aufgrund mangelnder Zugriffsrechte verweigert. Bitte kontaktieren Sie Ihren Dienstanbieter falls sie denken, dass dies ein Fehler ist.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/de/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/de/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:37:48.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Zeitguthaben aufgebraucht

          +
          + +

          Ihr Zugriff auf diesen Proxy unterliegt einer Zeitbegrenzung. Ihr Online-Zeitguthaben ist nun aufgebraucht. Es wird automatisch erneuert, sobald der nächste vereinbarte Zyklus beginnt.

          +

          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-5.8/errors/de/ERR_AGENT_CONFIGURE squid-5.9/errors/de/ERR_AGENT_CONFIGURE --- squid-5.8/errors/de/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_AGENT_CONFIGURE 2023-05-01 10:37:49.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Webbrowserkonfiguration + + +
          +

          FEHLER

          +

          Webbrowserkonfiguration

          +
          +
          + +
          +
          +

          Ihre Webbrowserkonfiguration muss korrigiert werden um dieses Netzwerk zu nutzen.

          +
          + +

          Wie sie diese Einstellung in ihrem Browser finden:

          + +
          +For Firefox browsers go to: +
            +
          • Extras -> Optionen -> Erweitert -> Netzwerk -> Verbindungseinstellungen
          • +
          • Im HTTP Proxy Feld geben sie den Proxy Namen %h und Port %b ein.
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Extras -> Internetoptionen -> Verbindung -> LAN Einstellungen ->Proxy
          • +
          • Im HTTP Proxy Feld geben sie den Proxy Namen %h und Port %b ein.
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Extras -> Einstellungen -> Erweitert -> Netzwerk -> Proxyserver
          • +
          • Im HTTP Proxy Feld geben sie den Proxy Namen %h und Port %b ein.
          • +
          +
          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_AGENT_WPAD squid-5.9/errors/de/ERR_AGENT_WPAD --- squid-5.8/errors/de/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_AGENT_WPAD 2023-05-01 10:37:49.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Webbrowserkonfiguration + + +
          +

          FEHLER

          +

          Webbrowserkonfiguration

          +
          +
          + +
          +
          +

          Ihre Webbrowserkonfiguration muss korrigiert werden um dieses Netzwerk zu nutzen.

          +
          + +

          Wie sie diese Einstellung in ihrem Browser finden:

          + +
          +For Firefox browsers go to: +
            +
          • Extras -> Optionen -> Erweitert -> Netzwerk -> Verbindungseinstellungen
          • +
          • Wählen sie Automatische Suche von Einstellungen für dieses Netzwerk
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Extras -> Internetoptionen -> Verbindung -> LAN Einstellungen ->Proxy
          • +
          • Automatische Suche von Einstellungen
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Extras -> Einstellungen -> Erweitert -> Netzwerk -> Proxyserver
          • +
          • Automatisches Konfigurationsskript verwenden
          • +
          +
          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/de/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/de/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:37:49.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEHLER: Cache Zugriff verweigert + + +
          +

          FEHLER

          +

          Cache Zugriff verweigert.

          +
          +
          + +
          +

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

          + +
          +

          Cache Zugriff verweigert.

          +
          + +

          Sie sind momentan nicht berechtigt %U von diesem Cache abzurufen, bis sie sich authentifiziert haben.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/de/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/de/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:37:49.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEHLER: Cache Manager Zugriff verweigert + + +
          +

          FEHLER

          +

          Cache Manager Zugriff verweigert.

          +
          +
          + +
          +

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

          + +
          +

          Cache Manager Zugriff verweigert.

          +
          + +

          Sie sind momentan nicht berechtigt %U von diesem Cache Manager abzurufen, bis sie sich authentifiziert haben.

          + +

          Bitte kontaktieren sie den Cache Administrator Falls sie Schwierigkeiten haben sich zu authentifizieren oder, falls sie der Administrator sind, lesen sie die Squid Dokumentation zum Thema Cacheverwaltungsoberfläche und prüfen sie das Cachelog für detaillierte Fehlermeldungen.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_CANNOT_FORWARD squid-5.9/errors/de/ERR_CANNOT_FORWARD --- squid-5.8/errors/de/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_CANNOT_FORWARD 2023-05-01 10:37:49.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          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-5.8/errors/de/ERR_CONFLICT_HOST squid-5.9/errors/de/ERR_CONFLICT_HOST --- squid-5.8/errors/de/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_CONFLICT_HOST 2023-05-01 10:37:49.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

          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-5.8/errors/de/ERR_CONNECT_FAIL squid-5.9/errors/de/ERR_CONNECT_FAIL --- squid-5.8/errors/de/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_CONNECT_FAIL 2023-05-01 10:37:50.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Verbindung zu %I Fehlgeschlagen.

          +
          + +

          Das System antwortete: %E

          + +

          Der Zielhost oder das Zielnetzwerk ist momentan nicht verfügbar. Bitte wiederholen sie die Anfrage.

          + +

          Ihr Cache Administrator ist %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_DIR_LISTING squid-5.9/errors/de/ERR_DIR_LISTING --- squid-5.8/errors/de/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_DIR_LISTING 2023-05-01 10:37:50.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Verzeichnis: %U + + +
          +

          Verzeichnis: %U/

          +
          +
          + +
          +

          Verzeichnisinhalt:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Übergeordnetes Verzeichnis (Stammverzeichnis)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_DNS_FAIL squid-5.9/errors/de/ERR_DNS_FAIL --- squid-5.8/errors/de/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_DNS_FAIL 2023-05-01 10:37:50.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Konnte keine IP Adresse vom Hostnamen %H ermitteln.

          +
          + +

          Der DNS-Server meldete:

          +
          +
          %z
          +
          + +

          Das heißt, dass der Cache nicht in der Lage war den Hostnamen aufzulösen der in der URL gefunden wurde. Überprüfen sie ob die Adresse korrekt ist.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_ESI squid-5.9/errors/de/ERR_ESI --- squid-5.8/errors/de/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_ESI 2023-05-01 10:37:50.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          ESI-Verarbeitung fehlgeschlagen.

          +
          + +

          Der ESI-Prozessor meldete:

          +
          +
          %Z
          +
          + +

          Das heißt, dass der Ersatz nicht in der Lage war das ESI Template zu verarbeiten. Bitte melden sie diesen Fehler dem Webmaster.

          + +

          Ihr Webmaster ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_FORWARDING_DENIED squid-5.9/errors/de/ERR_FORWARDING_DENIED --- squid-5.8/errors/de/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_FORWARDING_DENIED 2023-05-01 10:37:50.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Weiterleitung verweigert.

          +
          + +

          Dieser Cache wird ihre Anfrage nicht weiterleiten da er versucht ein Geschwisterverhältnis zu erzwingen. Warscheinlich ist der Client auf %i ein Cache der falsch konfiguriert wurde.

          + +

          Ihr Cache Administrator ist %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_FTP_DISABLED squid-5.9/errors/de/ERR_FTP_DISABLED --- squid-5.8/errors/de/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_FTP_DISABLED 2023-05-01 10:37:51.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          FTP ist deaktiviert

          +
          + +

          Dieser Cache unterstützt kein FTP.

          + +

          Ihr Cache Administrator ist %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_FTP_FAILURE squid-5.9/errors/de/ERR_FTP_FAILURE --- squid-5.8/errors/de/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_FTP_FAILURE 2023-05-01 10:37:51.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

          Ein FTP Protokollfehler ist bei der URL %U aufgetreten.

          + +

          Squid sendete das folgende FTP Kommando:

          +
          +
          %f
          +
          + +

          Der Server antwortete:

          +
          +
          %F
          +
          %g
          +
          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_FTP_FORBIDDEN squid-5.9/errors/de/ERR_FTP_FORBIDDEN --- squid-5.8/errors/de/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_FTP_FORBIDDEN 2023-05-01 10:37:51.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

          Die FTP Authentifizierung bei der URL %U ist Fehlgeschlagen.

          + +

          Squid sendete das folgende FTP Kommando:

          +
          +
          %f
          +
          + +

          Der Server antwortete:

          +
          +
          %F
          +
          %g
          +
          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_FTP_NOT_FOUND squid-5.9/errors/de/ERR_FTP_NOT_FOUND --- squid-5.8/errors/de/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_FTP_NOT_FOUND 2023-05-01 10:37:51.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

          Die folgende URL konnte nicht gefunden werden: %U

          + +

          Squid sendete das folgende FTP Kommando:

          +
          +
          %f
          +
          + +

          Der Server antwortete:

          +
          +
          %F
          +
          %g
          +
          + +

          Die Ursache kann eine FTP URL mit einem Absoluten Pfad sein (was nicht RFC 1738 konform ist). Wenn dies der Fall ist, ist die Datei unter %B zu finden.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_FTP_PUT_CREATED squid-5.9/errors/de/ERR_FTP_PUT_CREATED --- squid-5.8/errors/de/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_FTP_PUT_CREATED 2023-05-01 10:37:51.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Erfolgreich. + + +
          +

          Operation Erfolgreich

          +

          Datei erstellt

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_FTP_PUT_ERROR squid-5.9/errors/de/ERR_FTP_PUT_ERROR --- squid-5.8/errors/de/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_FTP_PUT_ERROR 2023-05-01 10:37:51.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FEHLER: FTP Upload fehlgeschlagen + + +
          +

          FEHLER

          +

          FTP PUT Upload fehlgeschlagen

          +
          +
          + +
          +

          Ein FTP Protokollfehler ist bei der URL %U aufgetreten.

          + +

          Squid sendete das folgende FTP Kommando:

          +
          +
          %f
          +
          + +

          Der Server antwortete:

          +
          +
          %F
          +
          + +

          Das heißt, dass der FTP Server keine Berechtigung oder nicht genug Plattenplatz zum Speichern der Datei zur Verfügung hat. Überprüfen sie Pfad, Berechtigungen und Plattenplatz und wiederholen sie die Anfrage.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_FTP_PUT_MODIFIED squid-5.9/errors/de/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/de/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_FTP_PUT_MODIFIED 2023-05-01 10:37:52.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Erfolgreich. + + +
          +

          Operation Erfolgreich

          +

          Datei aktualisiert

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_FTP_UNAVAILABLE squid-5.9/errors/de/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/de/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_FTP_UNAVAILABLE 2023-05-01 10:37:52.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

          Der FTP Server war zu beschäftigt um die URL: %U abzurufen

          + +

          Squid sendete das folgende FTP Kommando:

          + +
          +
          %f
          +
          + +

          Der Server antwortete:

          +
          +
          %F
          +
          %g
          +
          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_GATEWAY_FAILURE squid-5.9/errors/de/ERR_GATEWAY_FAILURE --- squid-5.8/errors/de/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_GATEWAY_FAILURE 2023-05-01 10:37:52.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Gateway Proxy Fehler

          +
          + +

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

          + +

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

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_ICAP_FAILURE squid-5.9/errors/de/ERR_ICAP_FAILURE --- squid-5.8/errors/de/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_ICAP_FAILURE 2023-05-01 10:37:52.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          ICAP Protokoll Fehler.

          +
          + +

          Das System antwortete: %E

          + +

          Das heißt, dass etwas mit der ICAP Kommunikation nicht stimmt.

          + +

          Mögliche Probleme sind:

          +
            +
          • Der ICAP Server ist nicht erreichbar.

          • +
          • Die Antwort des ICAP Servers war ungültig.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_INVALID_REQ squid-5.9/errors/de/ERR_INVALID_REQ --- squid-5.8/errors/de/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_INVALID_REQ 2023-05-01 10:37:52.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

          Ungültige Anfrage Fehler erhalten als versucht wurde die Anfrage zu bearbeiten:

          + +
          +
          %R
          +
          + +

          Mögliche Probleme sind:

          +
            +
          • Fehlende oder unbekannte Anfragemethode.

          • +
          • Fehlende URL.

          • +
          • Fehlende HTTP-Version (HTTP/1.0).

          • +
          • Anfrage ist zu lang.

          • +
          • Content-Length fehlt für POST oder PUT Anfragen.

          • +
          • Ungültiges Zeichen im Hostname; Unterstriche sind nicht erlaubt.

          • +
          • HTTP/1.1 Expect wird von einer HTTP/1.0 Software erfragt

          • +
          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_INVALID_RESP squid-5.9/errors/de/ERR_INVALID_RESP --- squid-5.8/errors/de/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_INVALID_RESP 2023-05-01 10:37:53.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

          Ungültige Antwort Fehler erhalten als versucht wurde die Anfrage zu bearbeiten:

          + +
          +
          %R
          +
          + +

          Die HTTP Antwortnachricht, die vom Kontaktierten Server empfangen wurde, wurde nicht verstanden oder ist falsch. Bitte kontaktieren sie den Webmaster.

          + +

          Ihr Cache Administrator ist in der Lage ihnen mehr über das Problem zu erklären, falls dies Notwendig ist.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_INVALID_URL squid-5.9/errors/de/ERR_INVALID_URL --- squid-5.8/errors/de/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_INVALID_URL 2023-05-01 10:37:53.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Ungültige URL

          +
          + +

          Der Syntax der angeforderten URL ist falsch.

          + +

          Mögliche Probleme sind:

          +
            +
          • Fehlendes oder ungültiges Adressprotokoll (Versuchen sie zum Beispielhttp://)

          • +
          • Fehlender Hostname

          • +
          • Ungültiger Doppel-Escape im URL-Pfad

          • +
          • Ungültiges Zeichen im Hostname; Unterstriche sind nicht erlaubt.

          • +
          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_LIFETIME_EXP squid-5.9/errors/de/ERR_LIFETIME_EXP --- squid-5.8/errors/de/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_LIFETIME_EXP 2023-05-01 10:37:53.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Zeitlimit der Verbindung erreicht

          +
          + +

          Squid hat die Anfrage beendet, da die maximale Verbindungszeit überschritten wurde.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_NO_RELAY squid-5.9/errors/de/ERR_NO_RELAY --- squid-5.8/errors/de/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_NO_RELAY 2023-05-01 10:37:53.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Kein Wais Relay

          +
          + +

          Es ist kein WAIS Relay für diesen Cache definiert! Sagen sie dies dem Administrator.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/de/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/de/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:37:53.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Kein gültiges Dokument wurde im Cache gefunden und only-if-cached Option wurde angegeben.

          +
          + +

          Sie haben eine Anfrage mit der only-if-cached Cache Kontrolloption getätigt. Das Dokument wurde nicht im Cache gefunden, oder es forderte eine Aktualisierung an welche durch die only-if-cached Option unterbunden wurde.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/error-details.txt squid-5.9/errors/de/error-details.txt --- squid-5.8/errors/de/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/error-details.txt 2023-05-01 10:37:56.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/de/ERR_PRECONDITION_FAILED squid-5.9/errors/de/ERR_PRECONDITION_FAILED --- squid-5.8/errors/de/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_PRECONDITION_FAILED 2023-05-01 10:37:53.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Bedingung nicht Erfüllt.

          +
          + +

          Dies Bedeutet:

          +
          +

          Mindestens eine Bedingung, die vom HTTP Client vorrausgesetzt wird, wurde nicht erfüllt.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/de/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/de/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:37:54.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_READ_ERROR squid-5.9/errors/de/ERR_READ_ERROR --- squid-5.8/errors/de/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_READ_ERROR 2023-05-01 10:37:54.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Lesefehler

          +
          + +

          Das System antwortete: %E

          + +

          Ein Fehler ist beim Lesen vom Netzwerk aufgetreten. Bitte wiederholen sie die Anfrage.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_READ_TIMEOUT squid-5.9/errors/de/ERR_READ_TIMEOUT --- squid-5.8/errors/de/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_READ_TIMEOUT 2023-05-01 10:37:54.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Zeitüberschreitung beim Lesen

          +
          + +

          Das System antwortete: %E

          + +

          Zeitüberschreitung beim Warten auf Daten des Netzwerks. Das Netzwerk oder der Server könnten nicht verfügbar oder überlastet sein. Bitte versuchen sie es erneut.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/de/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/de/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:37:54.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Konnte keine sichere Verbindung zu %I herstellen

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Dieser Proxy und der Zielhost waren nicht in der Lage Sicherheitseinstellungen auszuhandeln die beidseitig akzeptiert werden. Es ist möglich dass der Zielhost keine sicheren Verbindungen unterstützte oder der Proxy nicht mit dem Sicherheitszertifikat des Hosts einverstanden ist.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_SHUTTING_DOWN squid-5.9/errors/de/ERR_SHUTTING_DOWN --- squid-5.8/errors/de/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_SHUTTING_DOWN 2023-05-01 10:37:54.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +

          Dieser Cache wird momentan heruntergefahren und kann daher die Anfrage nicht bearbeiten. Bitte wiederholen sie die Anfrage gleich noch einmal.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_SOCKET_FAILURE squid-5.9/errors/de/ERR_SOCKET_FAILURE --- squid-5.8/errors/de/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_SOCKET_FAILURE 2023-05-01 10:37:54.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Socketfehler

          +
          + +

          Das System antwortete: %E

          + +

          Squid kann keinen TCP-Socket erstellen, wahrscheinlich aufgrund von großer Systemlast. Bitte wiederholen Sie die Anfrage.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_TOO_BIG squid-5.9/errors/de/ERR_TOO_BIG --- squid-5.8/errors/de/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_TOO_BIG 2023-05-01 10:37:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Die Anfrage oder Antwort ist zu lang.

          +
          + +

          Für einen POST-Request ist die hochzuladene Resource zu groß.

          +

          Für einen GET-Request ist die angeforderte Resource zu groß.

          +

          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-5.8/errors/de/ERR_UNSUP_HTTPVERSION squid-5.9/errors/de/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/de/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_UNSUP_HTTPVERSION 2023-05-01 10:37:55.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Nicht unterstützte HTTP Version

          +
          +
          + +
          +

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

          + +
          +

          Nicht unterstützte HTTP Version

          +
          + +

          Dieser Squid akzeptiert die angeforderte HTTP Version nicht.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_UNSUP_REQ squid-5.9/errors/de/ERR_UNSUP_REQ --- squid-5.8/errors/de/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_UNSUP_REQ 2023-05-01 10:37:55.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Anfragemethode und Protokoll nicht unterstützt

          +
          + +

          Squid unterstützt nicht alle Anfragemethoden für alle Protokolle. Sie können zum Beispiel keine POST Anfrage über das Gopher Protokoll senden.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_URN_RESOLVE squid-5.9/errors/de/ERR_URN_RESOLVE --- squid-5.8/errors/de/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_URN_RESOLVE 2023-05-01 10:37:55.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEHLER: Der angeforderte URN konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Eine URL für den angeforderten URN konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Konnte URN nicht auflösen

          +
          + +

          Hey, erwarten sie nicht zuviel von URNs auf %T :)

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_WRITE_ERROR squid-5.9/errors/de/ERR_WRITE_ERROR --- squid-5.8/errors/de/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_WRITE_ERROR 2023-05-01 10:37:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Fehler beim Schreiben

          +
          + +

          Das System antwortete: %E

          + +

          Ein Fehler ist beim Schreiben auf das Netzwerk aufgetreten. Bitte wiederholen sie die Anfrage.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/de/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/de/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/de/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/de/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:37:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEHLER: Die angeforderte URL konnte nicht gefunden werden + + +
          +

          FEHLER

          +

          Die angeforderte URL konnte nicht gefunden werden

          +
          +
          + +
          +

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

          + +
          +

          Nullgrößenantwort

          +
          + +

          Squid hat keine Daten für diese Anfrage empfangen.

          + +

          Ihr Cache Administrator ist %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_ACCESS_DENIED squid-5.9/errors/el/ERR_ACCESS_DENIED --- squid-5.8/errors/el/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_ACCESS_DENIED 2023-05-01 10:37:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/el/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/el/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:37:56.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_AGENT_CONFIGURE squid-5.9/errors/el/ERR_AGENT_CONFIGURE --- squid-5.8/errors/el/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_AGENT_CONFIGURE 2023-05-01 10:37:56.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          ΣΦΑΛΜΑ

          +

          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.
          • +
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_AGENT_WPAD squid-5.9/errors/el/ERR_AGENT_WPAD --- squid-5.8/errors/el/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_AGENT_WPAD 2023-05-01 10:37:56.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          ΣΦΑΛΜΑ

          +

          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
          • +
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/el/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/el/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:37:56.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ΣΦΑΛΜΑ: Απαγορεύεται η Πρόσβαση στο Μεσολαβητή + + +
          +

          ΣΦΑΛΜΑ

          +

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

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          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-5.8/errors/el/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/el/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/el/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:37:57.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: Cache Manager Access Denied + + +
          +

          ΣΦΑΛΜΑ

          +

          Απαγορεύεται η Πρόσβαση στη Διαχείριση του Μεσολαβητή.

          +
          +
          + +
          +

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

          + +
          +

          Απαγορεύεται η Πρόσβαση στη Διαχείριση του Μεσολαβητή.

          +
          + +

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

          + +

          Επικοινωνήστε με τον διαχειριστή του μεσολαβητή σας αν αντιμετωπίζετε δυσκολία να πιστοποιήσετε τον λογαριασμό σας ή αν είστε ο διαχειριστής, διαβάστε την τεκμηρίωση του Squid σχετικά με τη διαχείριση του και κοιτάξτε τα ημερολόγια του προγράμματος για πιο λεπτομερείς αναφορές σφάλματος.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_CANNOT_FORWARD squid-5.9/errors/el/ERR_CANNOT_FORWARD --- squid-5.8/errors/el/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_CANNOT_FORWARD 2023-05-01 10:37:57.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          Αδύνατη η προώθηση της αιτήσεως σας αυτή τη στιγμή.

          +
          + +

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

          + +

          Some possible problems are:

          +
            +
          • 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.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_CONFLICT_HOST squid-5.9/errors/el/ERR_CONFLICT_HOST --- squid-5.8/errors/el/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_CONFLICT_HOST 2023-05-01 10:37:57.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          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:

          +
            +
          • 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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_CONNECT_FAIL squid-5.9/errors/el/ERR_CONNECT_FAIL --- squid-5.8/errors/el/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_CONNECT_FAIL 2023-05-01 10:37:57.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          Connection to %I failed.

          +
          + +

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

          + +

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

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_DIR_LISTING squid-5.9/errors/el/ERR_DIR_LISTING --- squid-5.8/errors/el/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_DIR_LISTING 2023-05-01 10:37:57.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_DNS_FAIL squid-5.9/errors/el/ERR_DNS_FAIL --- squid-5.8/errors/el/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_DNS_FAIL 2023-05-01 10:37:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          Δεν ήταν δυνατόν να εξακριβωθεί η διεύθυνση IP για το όνομα %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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_ESI squid-5.9/errors/el/ERR_ESI --- squid-5.8/errors/el/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_ESI 2023-05-01 10:37:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          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-5.8/errors/el/ERR_FORWARDING_DENIED squid-5.9/errors/el/ERR_FORWARDING_DENIED --- squid-5.8/errors/el/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_FORWARDING_DENIED 2023-05-01 10:37:58.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          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.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_FTP_DISABLED squid-5.9/errors/el/ERR_FTP_DISABLED --- squid-5.8/errors/el/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_FTP_DISABLED 2023-05-01 10:37:58.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          Αυτός ο μεσολαβητής δεν υποστηρίζει FTP.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_FTP_FAILURE squid-5.9/errors/el/ERR_FTP_FAILURE --- squid-5.8/errors/el/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_FTP_FAILURE 2023-05-01 10:37:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          Κατά την προσπάθεια πρόσβασης στη διεύθυνση Προέκυψε σφάλμα στο πρωτόκολλο FTP: %U

          + +

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

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_FTP_FORBIDDEN squid-5.9/errors/el/ERR_FTP_FORBIDDEN --- squid-5.8/errors/el/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_FTP_FORBIDDEN 2023-05-01 10:37:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          Κατά την προσπάθεια πρόσβασης στη διεύθυνση Προέκυψε σφάλμα εξακρίβωσης FTP: %U

          + +

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

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_FTP_NOT_FOUND squid-5.9/errors/el/ERR_FTP_NOT_FOUND --- squid-5.8/errors/el/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_FTP_NOT_FOUND 2023-05-01 10:37:59.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          Η ακόλουθη διεύθυνση δεν βρέθηκε: %U

          + +

          Το 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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_FTP_PUT_CREATED squid-5.9/errors/el/ERR_FTP_PUT_CREATED --- squid-5.8/errors/el/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_FTP_PUT_CREATED 2023-05-01 10:37:59.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Η λειτουργία ολοκληρώθηκε με επιτυχία

          +

          Το αρχείο δημιουργήθηκε

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_FTP_PUT_ERROR squid-5.9/errors/el/ERR_FTP_PUT_ERROR --- squid-5.8/errors/el/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_FTP_PUT_ERROR 2023-05-01 10:37:59.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ΣΦΑΛΜΑ: Η μεταφόρτωση FTP απέτυχε + + +
          +

          ΣΦΑΛΜΑ

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          Κατά την προσπάθεια πρόσβασης στη διεύθυνση Προέκυψε σφάλμα στο πρωτόκολλο FTP: %U

          + +

          Το 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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_FTP_PUT_MODIFIED squid-5.9/errors/el/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/el/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_FTP_PUT_MODIFIED 2023-05-01 10:37:59.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Η λειτουργία ολοκληρώθηκε με επιτυχία

          +

          Το αρχείο ανανεώθηκε

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_FTP_UNAVAILABLE squid-5.9/errors/el/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/el/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_FTP_UNAVAILABLE 2023-05-01 10:37:59.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +

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

          + +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_GATEWAY_FAILURE squid-5.9/errors/el/ERR_GATEWAY_FAILURE --- squid-5.8/errors/el/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_GATEWAY_FAILURE 2023-05-01 10:37:59.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_ICAP_FAILURE squid-5.9/errors/el/ERR_ICAP_FAILURE --- squid-5.8/errors/el/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_ICAP_FAILURE 2023-05-01 10:38:00.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          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.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_INVALID_REQ squid-5.9/errors/el/ERR_INVALID_REQ --- squid-5.8/errors/el/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_INVALID_REQ 2023-05-01 10:38:00.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +
          %R
          +
          + +

          Some possible problems are:

          +
            +
          • Ελλιπής ή άγνωστη μέθοδος αίτησης.

          • +
          • Missing URL.

          • +
          • Ελλιπές αναγνωριστικό HTTP (HTTP/1.0)

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

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

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

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

          • +
          + +

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

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_INVALID_RESP squid-5.9/errors/el/ERR_INVALID_RESP --- squid-5.8/errors/el/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_INVALID_RESP 2023-05-01 10:38:00.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_INVALID_URL squid-5.9/errors/el/ERR_INVALID_URL --- squid-5.8/errors/el/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_INVALID_URL 2023-05-01 10:38:00.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          Υπάρχει πρόβλημα με την αιτούμενη διεύθυνση.

          + +

          Some possible problems are:

          +
            +
          • Ελλιπές ή λανθασμένο πρωτόκολλο πρόσβασης (θα πρέπει να είναι http:// ή παρόμοιο)

          • +
          • Ελλιπές όνομα υπολογιστή

          • +
          • Λανθασμένοι χαρακτήρες διαφυγής στη διεύθυνση

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

          • +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_LIFETIME_EXP squid-5.9/errors/el/ERR_LIFETIME_EXP --- squid-5.8/errors/el/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_LIFETIME_EXP 2023-05-01 10:38:00.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          Το Squid τερμάτισε την αίτηση επειδή ξεπέρασε τον μέγιστο χρόνο σύνδεσης.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_NO_RELAY squid-5.9/errors/el/ERR_NO_RELAY --- squid-5.8/errors/el/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_NO_RELAY 2023-05-01 10:38:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/el/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/el/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:38:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/error-details.txt squid-5.9/errors/el/error-details.txt --- squid-5.8/errors/el/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/error-details.txt 2023-05-01 10:38:03.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/el/ERR_PRECONDITION_FAILED squid-5.9/errors/el/ERR_PRECONDITION_FAILED --- squid-5.8/errors/el/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_PRECONDITION_FAILED 2023-05-01 10:38:01.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/el/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/el/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:38:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_READ_ERROR squid-5.9/errors/el/ERR_READ_ERROR --- squid-5.8/errors/el/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_READ_ERROR 2023-05-01 10:38:01.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

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

          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_READ_TIMEOUT squid-5.9/errors/el/ERR_READ_TIMEOUT --- squid-5.8/errors/el/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_READ_TIMEOUT 2023-05-01 10:38:01.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          Το σύστημα ενημέρωσε ότι: %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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/el/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/el/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:38:02.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          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

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_SHUTTING_DOWN squid-5.9/errors/el/ERR_SHUTTING_DOWN --- squid-5.8/errors/el/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_SHUTTING_DOWN 2023-05-01 10:38:02.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_SOCKET_FAILURE squid-5.9/errors/el/ERR_SOCKET_FAILURE --- squid-5.8/errors/el/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_SOCKET_FAILURE 2023-05-01 10:38:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

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

          + +

          Το Squid δεν μπορεί να δημιουργήσει σύνδεση TCP, υποθετικά λόγω φόρτου. Παρακαλώ ξαναδοκιμάστε.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_TOO_BIG squid-5.9/errors/el/ERR_TOO_BIG --- squid-5.8/errors/el/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_TOO_BIG 2023-05-01 10:38:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          Αν κάνετε μια αίτηση POST ή PUT, τότε το σώμα αυτό που προσπαθείτε να ανεβάσετε είναι πολύ μεγάλο.

          +

          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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_UNSUP_HTTPVERSION squid-5.9/errors/el/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/el/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_UNSUP_HTTPVERSION 2023-05-01 10:38:02.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_UNSUP_REQ squid-5.9/errors/el/ERR_UNSUP_REQ --- squid-5.8/errors/el/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_UNSUP_REQ 2023-05-01 10:38:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          Το Squid δεν υποστηρίζει όλες τις μεθόδους αιτήσεων για όλα τα πρωτόκολλα πρόσβασης. Για παράδειγμα, το POST για Gopher δεν υποστηρίζεται.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_URN_RESOLVE squid-5.9/errors/el/ERR_URN_RESOLVE --- squid-5.8/errors/el/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_URN_RESOLVE 2023-05-01 10:38:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          ΣΦΑΛΜΑ

          +

          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

          +
          + +

          Μεταξύ μας, μην περιμένετε και πολλά από URNs στο %T :)

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_WRITE_ERROR squid-5.9/errors/el/ERR_WRITE_ERROR --- squid-5.8/errors/el/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_WRITE_ERROR 2023-05-01 10:38:03.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

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

          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/el/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/el/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/el/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/el/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:38:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ΣΦΑΛΜΑ: Αδύνατη η πρόσβαση στην αιτούμενη διεύθυνση + + +
          +

          ΣΦΑΛΜΑ

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          Squid did not receive any data for this request.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/en/ERR_ACCESS_DENIED squid-5.9/errors/en/ERR_ACCESS_DENIED --- squid-5.8/errors/en/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_ACCESS_DENIED 2023-05-01 10:38:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/en/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/en/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/en/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:38:03.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/en/ERR_AGENT_CONFIGURE squid-5.9/errors/en/ERR_AGENT_CONFIGURE --- squid-5.8/errors/en/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_AGENT_CONFIGURE 2023-05-01 10:38:04.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +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-5.8/errors/en/ERR_AGENT_WPAD squid-5.9/errors/en/ERR_AGENT_WPAD --- squid-5.8/errors/en/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_AGENT_WPAD 2023-05-01 10:38:04.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +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-5.8/errors/en/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/en/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/en/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:38:04.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/en/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/en/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/en/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:38:04.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/en/ERR_CANNOT_FORWARD squid-5.9/errors/en/ERR_CANNOT_FORWARD --- squid-5.8/errors/en/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_CANNOT_FORWARD 2023-05-01 10:38:04.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/en/ERR_CONFLICT_HOST squid-5.9/errors/en/ERR_CONFLICT_HOST --- squid-5.8/errors/en/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_CONFLICT_HOST 2023-05-01 10:38:04.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/en/ERR_CONNECT_FAIL squid-5.9/errors/en/ERR_CONNECT_FAIL --- squid-5.8/errors/en/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_CONNECT_FAIL 2023-05-01 10:38:05.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +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-5.8/errors/en/ERR_DIR_LISTING squid-5.9/errors/en/ERR_DIR_LISTING --- squid-5.8/errors/en/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_DIR_LISTING 2023-05-01 10:38:05.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/en/ERR_DNS_FAIL squid-5.9/errors/en/ERR_DNS_FAIL --- squid-5.8/errors/en/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_DNS_FAIL 2023-05-01 10:38:05.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +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-5.8/errors/en/ERR_ESI squid-5.9/errors/en/ERR_ESI --- squid-5.8/errors/en/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_ESI 2023-05-01 10:38:05.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +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-5.8/errors/en/ERR_FORWARDING_DENIED squid-5.9/errors/en/ERR_FORWARDING_DENIED --- squid-5.8/errors/en/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_FORWARDING_DENIED 2023-05-01 10:38:05.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/en/ERR_FTP_DISABLED squid-5.9/errors/en/ERR_FTP_DISABLED --- squid-5.8/errors/en/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_FTP_DISABLED 2023-05-01 10:38:06.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/en/ERR_FTP_FAILURE squid-5.9/errors/en/ERR_FTP_FAILURE --- squid-5.8/errors/en/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_FTP_FAILURE 2023-05-01 10:38:06.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +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-5.8/errors/en/ERR_FTP_FORBIDDEN squid-5.9/errors/en/ERR_FTP_FORBIDDEN --- squid-5.8/errors/en/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_FTP_FORBIDDEN 2023-05-01 10:38:06.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +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-5.8/errors/en/ERR_FTP_NOT_FOUND squid-5.9/errors/en/ERR_FTP_NOT_FOUND --- squid-5.8/errors/en/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_FTP_NOT_FOUND 2023-05-01 10:38:06.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +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-5.8/errors/en/ERR_FTP_PUT_CREATED squid-5.9/errors/en/ERR_FTP_PUT_CREATED --- squid-5.8/errors/en/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_FTP_PUT_CREATED 2023-05-01 10:38:06.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operation successful

          +

          File created

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/en/ERR_FTP_PUT_ERROR squid-5.9/errors/en/ERR_FTP_PUT_ERROR --- squid-5.8/errors/en/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_FTP_PUT_ERROR 2023-05-01 10:38:06.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +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-5.8/errors/en/ERR_FTP_PUT_MODIFIED squid-5.9/errors/en/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/en/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_FTP_PUT_MODIFIED 2023-05-01 10:38:07.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operation successful

          +

          File updated

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/en/ERR_FTP_UNAVAILABLE squid-5.9/errors/en/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/en/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_FTP_UNAVAILABLE 2023-05-01 10:38:07.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +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-5.8/errors/en/ERR_GATEWAY_FAILURE squid-5.9/errors/en/ERR_GATEWAY_FAILURE --- squid-5.8/errors/en/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_GATEWAY_FAILURE 2023-05-01 10:38:07.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/en/ERR_ICAP_FAILURE squid-5.9/errors/en/ERR_ICAP_FAILURE --- squid-5.8/errors/en/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_ICAP_FAILURE 2023-05-01 10:38:07.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +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:

          +
            +
          • The ICAP server is not reachable.

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

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/en/ERR_INVALID_REQ squid-5.9/errors/en/ERR_INVALID_REQ --- squid-5.8/errors/en/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_INVALID_REQ 2023-05-01 10:38:07.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +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.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/en/ERR_INVALID_RESP squid-5.9/errors/en/ERR_INVALID_RESP --- squid-5.8/errors/en/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_INVALID_RESP 2023-05-01 10:38:07.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/en/ERR_INVALID_URL squid-5.9/errors/en/ERR_INVALID_URL --- squid-5.8/errors/en/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_INVALID_URL 2023-05-01 10:38:08.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +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-5.8/errors/en/ERR_LIFETIME_EXP squid-5.9/errors/en/ERR_LIFETIME_EXP --- squid-5.8/errors/en/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_LIFETIME_EXP 2023-05-01 10:38:08.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/en/ERR_NO_RELAY squid-5.9/errors/en/ERR_NO_RELAY --- squid-5.8/errors/en/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_NO_RELAY 2023-05-01 10:38:08.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/en/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/en/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/en/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:38:08.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/en/error-details.txt squid-5.9/errors/en/error-details.txt --- squid-5.8/errors/en/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/error-details.txt 2023-05-01 10:38:11.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/en/ERR_PRECONDITION_FAILED squid-5.9/errors/en/ERR_PRECONDITION_FAILED --- squid-5.8/errors/en/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_PRECONDITION_FAILED 2023-05-01 10:38:08.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/en/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/en/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/en/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:38:09.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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 Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/en/ERR_READ_ERROR squid-5.9/errors/en/ERR_READ_ERROR --- squid-5.8/errors/en/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_READ_ERROR 2023-05-01 10:38:09.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/en/ERR_READ_TIMEOUT squid-5.9/errors/en/ERR_READ_TIMEOUT --- squid-5.8/errors/en/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_READ_TIMEOUT 2023-05-01 10:38:09.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/en/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/en/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/en/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:38:09.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +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

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/en/ERR_SHUTTING_DOWN squid-5.9/errors/en/ERR_SHUTTING_DOWN --- squid-5.8/errors/en/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_SHUTTING_DOWN 2023-05-01 10:38:09.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +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-5.8/errors/en/ERR_SOCKET_FAILURE squid-5.9/errors/en/ERR_SOCKET_FAILURE --- squid-5.8/errors/en/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_SOCKET_FAILURE 2023-05-01 10:38:09.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/en/ERR_TOO_BIG squid-5.9/errors/en/ERR_TOO_BIG --- squid-5.8/errors/en/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_TOO_BIG 2023-05-01 10:38:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/en/ERR_UNSUP_HTTPVERSION squid-5.9/errors/en/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/en/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_UNSUP_HTTPVERSION 2023-05-01 10:38:10.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/en/ERR_UNSUP_REQ squid-5.9/errors/en/ERR_UNSUP_REQ --- squid-5.8/errors/en/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_UNSUP_REQ 2023-05-01 10:38:10.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/en/ERR_URN_RESOLVE squid-5.9/errors/en/ERR_URN_RESOLVE --- squid-5.8/errors/en/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_URN_RESOLVE 2023-05-01 10:38:10.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/en/ERR_WRITE_ERROR squid-5.9/errors/en/ERR_WRITE_ERROR --- squid-5.8/errors/en/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_WRITE_ERROR 2023-05-01 10:38:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/en/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/en/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/en/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/en/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:38:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/es/ERR_ACCESS_DENIED squid-5.9/errors/es/ERR_ACCESS_DENIED --- squid-5.8/errors/es/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_ACCESS_DENIED 2023-05-01 10:38:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Acceso Denegado

          +
          + +

          La configuración de control de acceso evita que su solicitud sea permitida en este momento. Por favor, póngase en contacto con su proveedor de servicios si cree que esto es incorrecto.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/es/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/es/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:38:18.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

          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-5.8/errors/es/ERR_AGENT_CONFIGURE squid-5.9/errors/es/ERR_AGENT_CONFIGURE --- squid-5.8/errors/es/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_AGENT_CONFIGURE 2023-05-01 10:38:19.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Configuración del Navegador de Internet + + +
          +

          ERROR

          +

          Configuración del Navegador de Internet

          +
          +
          + +
          +
          +

          Su configuración de Navegador de Internet necesita ser corregida para usar esta red.

          +
          + +

          Como encontrar estas preferencias en su navegador:

          + +
          +For Firefox browsers go to: +
            +
          • Herramientas -> Opciones -> Avanzado -> Red -> Ajustes de conexión
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Herramientas -> Opciones de Internet -> Conexión -> Preferencias de RED ->Proxy
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Herramientas -> Opciones -> Avanzado -> Red -> Servidores Proxy
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_AGENT_WPAD squid-5.9/errors/es/ERR_AGENT_WPAD --- squid-5.8/errors/es/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_AGENT_WPAD 2023-05-01 10:38:19.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Configuración del Navegador de Internet + + +
          +

          ERROR

          +

          Configuración del Navegador de Internet

          +
          +
          + +
          +
          +

          Su configuración de Navegador de Internet necesita ser corregida para usar esta red.

          +
          + +

          Como encontrar estas preferencias en su navegador:

          + +
          +For Firefox browsers go to: +
            +
          • Herramientas -> Opciones -> Avanzado -> Red -> Ajustes de conexión
          • +
          • Select Auto-detect proxy settings for this network
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Herramientas -> Opciones de Internet -> Conexión -> Preferencias de RED ->Proxy
          • +
          • Seleccione Detectar preferencias automáticamente
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Herramientas -> Opciones -> Avanzado -> Red -> Servidores Proxy
          • +
          • Seleccione Usar Configuración automática de Proxy
          • +
          +
          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/es/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/es/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:38:19.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: Acceso Denegado a la Caché + + +
          +

          ERROR

          +

          Acceso Denegado a la Caché

          +
          +
          + +
          +

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

          + +
          +

          Acceso Denegado a la Caché

          +
          + +

          Lo lamento, tu no estás autorizado a solicitar %U de este caché hasta que te hayas autenticado.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/es/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/es/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:38:19.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: Acceso Denegado al Caché Manager + + +
          +

          ERROR

          +

          Acceso Denegado al Cache Manager.

          +
          +
          + +
          +

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

          + +
          +

          Acceso Denegado al Cache Manager.

          +
          + +

          Lo lamento, tu no estás autorizado a solicitar %U de este gestor de caché hasta que te hayas autenticado.

          + +

          Por favor contacte al administrador del caché si tiene dificultad para autenticarse, o si Ud. es el administrador, lea la documentación de Squid sobre interfaz del cache manager y chequee en el log de caché mensajes de error más detallados.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_CANNOT_FORWARD squid-5.9/errors/es/ERR_CANNOT_FORWARD --- squid-5.8/errors/es/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_CANNOT_FORWARD 2023-05-01 10:38:19.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          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-5.8/errors/es/ERR_CONFLICT_HOST squid-5.9/errors/es/ERR_CONFLICT_HOST --- squid-5.8/errors/es/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_CONFLICT_HOST 2023-05-01 10:38:19.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

          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-5.8/errors/es/ERR_CONNECT_FAIL squid-5.9/errors/es/ERR_CONNECT_FAIL --- squid-5.8/errors/es/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_CONNECT_FAIL 2023-05-01 10:38:20.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Conexión a %I fallida.

          +
          + +

          El sistema ha devuelto: %E

          + +

          El host remoto o la red se ha caído. Por favor, inténtelo de nuevo la petición.

          + +

          Su administrador del caché es %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_DIR_LISTING squid-5.9/errors/es/ERR_DIR_LISTING --- squid-5.8/errors/es/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_DIR_LISTING 2023-05-01 10:38:20.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directorio: %U + + +
          +

          Directorio: %U/

          +
          +
          + +
          +

          Contenido del Directorio:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Directorio superior (Directorio Raiz)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_DNS_FAIL squid-5.9/errors/es/ERR_DNS_FAIL --- squid-5.8/errors/es/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_DNS_FAIL 2023-05-01 10:38:20.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Incapaz de determinar la dirección IP a partir del nombre de la máquina %H

          +
          + +

          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.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_ESI squid-5.9/errors/es/ERR_ESI --- squid-5.8/errors/es/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_ESI 2023-05-01 10:38:20.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          El procesado ESI falló

          +
          + +

          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.

          + +

          Su administrador web es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_FORWARDING_DENIED squid-5.9/errors/es/ERR_FORWARDING_DENIED --- squid-5.8/errors/es/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_FORWARDING_DENIED 2023-05-01 10:38:20.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Reenvío denegado.

          +
          + +

          Este caché no transmitirá su solicitud, ya que intenta imponer una relación de conexión. Quizás el cliente en %i es un caché que se ha desconfigurado.

          + +

          Su administrador del caché es %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_FTP_DISABLED squid-5.9/errors/es/ERR_FTP_DISABLED --- squid-5.8/errors/es/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_FTP_DISABLED 2023-05-01 10:38:21.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Servicio FTP deshabilitado

          +
          + +

          Esta caché no soporta FTP.

          + +

          Su administrador del caché es %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_FTP_FAILURE squid-5.9/errors/es/ERR_FTP_FAILURE --- squid-5.8/errors/es/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_FTP_FAILURE 2023-05-01 10:38:21.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

          Se ha producido un error del protocolo FTP mientras se intentaba acceder a la URL: %U

          + +

          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-5.8/errors/es/ERR_FTP_FORBIDDEN squid-5.9/errors/es/ERR_FTP_FORBIDDEN --- squid-5.8/errors/es/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_FTP_FORBIDDEN 2023-05-01 10:38:21.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

          Ha ocurrido una falla de autenticación cuando se trataba de conseguir el URL: %U

          + +

          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-5.8/errors/es/ERR_FTP_NOT_FOUND squid-5.9/errors/es/ERR_FTP_NOT_FOUND --- squid-5.8/errors/es/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_FTP_NOT_FOUND 2023-05-01 10:38:21.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

          El siguiente URL no pudo ser obtenido: %U

          + +

          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.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_FTP_PUT_CREATED squid-5.9/errors/es/ERR_FTP_PUT_CREATED --- squid-5.8/errors/es/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_FTP_PUT_CREATED 2023-05-01 10:38:21.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +PUT FTP realizado con éxito + + +
          +

          Operación éxitoso

          +

          Archivo creado

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_FTP_PUT_ERROR squid-5.9/errors/es/ERR_FTP_PUT_ERROR --- squid-5.8/errors/es/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_FTP_PUT_ERROR 2023-05-01 10:38:21.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: falla en envio FTP + + +
          +

          ERROR

          +

          FTP PUT fallido

          +
          +
          + +
          +

          Se ha producido un error del protocolo FTP mientras se intentaba acceder a la URL: %U

          + +

          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.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_FTP_PUT_MODIFIED squid-5.9/errors/es/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/es/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_FTP_PUT_MODIFIED 2023-05-01 10:38:22.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +PUT FTP realizado con éxito + + +
          +

          Operación éxitoso

          +

          Archivo actualizado

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_FTP_UNAVAILABLE squid-5.9/errors/es/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/es/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_FTP_UNAVAILABLE 2023-05-01 10:38:22.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

          El servidor FTP estaba demasiado ocupado para recuperar la URL: %U

          + +

          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-5.8/errors/es/ERR_GATEWAY_FAILURE squid-5.9/errors/es/ERR_GATEWAY_FAILURE --- squid-5.8/errors/es/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_GATEWAY_FAILURE 2023-05-01 10:38:22.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

          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.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_ICAP_FAILURE squid-5.9/errors/es/ERR_ICAP_FAILURE --- squid-5.8/errors/es/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_ICAP_FAILURE 2023-05-01 10:38:22.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Error de protocolo ICAP.

          +
          + +

          El sistema ha devuelto: %E

          + +

          Esto significa que falló algún aspecto de la comunicación ICAP.

          + +

          Algunos posibles problemas son:

          +
            +
          • El servidor ICAP no es alcanzable.

          • +
          • Se ha recibido una respuesta ilegal desde el servidor ICAP.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_INVALID_REQ squid-5.9/errors/es/ERR_INVALID_REQ --- squid-5.8/errors/es/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_INVALID_REQ 2023-05-01 10:38:22.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +
          %R
          +
          + +

          Algunos posibles problemas son:

          +
            +
          • Falta o es desconocido el método de la petición (no es GET ni POST)

          • +
          • URL Perdido.

          • +
          • Falta el identificador HTTP (HTTP/1.0)

          • +
          • La petición es demasiado grande.

          • +
          • Falta Content-Length en las peticiones POST o PUT

          • +
          • Hay caracteres ilegales en el nombre de máquina; el carácter subrayado (_) no está permitido.

          • +
          • HTTP/1.1 Esperado: la característica ha sido requerida desde un software HTTP/1.0.

          • +
          + +

          Su administrador del caché es %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_INVALID_RESP squid-5.9/errors/es/ERR_INVALID_RESP --- squid-5.8/errors/es/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_INVALID_RESP 2023-05-01 10:38:22.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

          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.

          + +

          Quizas su administrador del caché pueda darle a Ud. más detalles acerca de la naturaleza exacta del problema en caso de ser necesario.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_INVALID_URL squid-5.9/errors/es/ERR_INVALID_URL --- squid-5.8/errors/es/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_INVALID_URL 2023-05-01 10:38:23.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          URL Inválida

          +
          + +

          Algún aspecto del URL solicitado es incorrecto.

          + +

          Algunos posibles problemas son:

          +
            +
          • Falta o es incorrecto el protocolo de acceso (debe ser http:// o similar)

          • +
          • Falta el nombre de la máquina

          • +
          • Hay un doble-escape ilegal en la ruta de la URL

          • +
          • Hay caracteres ilegales en el nombre de máquina; el carácter subrayado (_) no está permitido.

          • +
          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_LIFETIME_EXP squid-5.9/errors/es/ERR_LIFETIME_EXP --- squid-5.8/errors/es/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_LIFETIME_EXP 2023-05-01 10:38:23.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Ha expirado el tiempo de vida de la conexión

          +
          + +

          Squid ha dado por terminada la petición porque se ha excedido el tiempo de vida máximo para una conexión.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_NO_RELAY squid-5.9/errors/es/ERR_NO_RELAY --- squid-5.8/errors/es/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_NO_RELAY 2023-05-01 10:38:23.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          No hay una pasarela para protocolo Wais.

          +
          + +

          No esta definido el host wais relay para este cache. comentar con el administrador

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/es/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/es/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:38:23.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          No se encontró un documento válido en el caché y se especificó la directiva only-if-cached.

          +
          + +

          Ud. ha enviado una solicitud con la directiva de control del caché only-if-cached. El documento no fue encontrado en el caché, o requiere revalidación prohibida por la directiva only-if-cached

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/error-details.txt squid-5.9/errors/es/error-details.txt --- squid-5.8/errors/es/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/error-details.txt 2023-05-01 10:38:26.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/es/ERR_PRECONDITION_FAILED squid-5.9/errors/es/ERR_PRECONDITION_FAILED --- squid-5.8/errors/es/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_PRECONDITION_FAILED 2023-05-01 10:38:23.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

          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-5.8/errors/es/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/es/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/es/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:38:24.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_READ_ERROR squid-5.9/errors/es/ERR_READ_ERROR --- squid-5.8/errors/es/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_READ_ERROR 2023-05-01 10:38:24.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Error de Lectura

          +
          + +

          El sistema ha devuelto: %E

          + +

          Se ha producido un error al leer datos de la red. Por favor, inténtelo de nuevo.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_READ_TIMEOUT squid-5.9/errors/es/ERR_READ_TIMEOUT --- squid-5.8/errors/es/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_READ_TIMEOUT 2023-05-01 10:38:24.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Se acabó el tiempo máximo para lectura de datos de la red.

          +
          + +

          El sistema ha devuelto: %E

          + +

          Un tiempo de espera se produjo mientras se esperaba leer datos de la red. La red o el servidor puede estar caído o congestionado. Por favor, inténtelo de nuevo.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/es/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/es/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:38:24.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          No se ha podido establecer una conexión segura con %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Este proxy y el host remoto no han podido negociar una confguración de seguridad aceptable mutua para manejar su solicitud. Es posible que el host remoto sea incompatible con conexiones seguras, o el proxy no esté satisfecho con las credenciales de seguridad del host.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_SHUTTING_DOWN squid-5.9/errors/es/ERR_SHUTTING_DOWN --- squid-5.8/errors/es/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_SHUTTING_DOWN 2023-05-01 10:38:24.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +

          Este caché está en el proceso de apagado y no puede atender su solicitud en este momento. Por favor, inténtelo de nuevo pronto.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_SOCKET_FAILURE squid-5.9/errors/es/ERR_SOCKET_FAILURE --- squid-5.8/errors/es/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_SOCKET_FAILURE 2023-05-01 10:38:24.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Fallo en el puerto (socket)

          +
          + +

          El sistema ha devuelto: %E

          + +

          Squid no ha sido capaz de crear un socket TCP, probablemente debido a una carga excesiva. Por favor reintenta tu petición.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_TOO_BIG squid-5.9/errors/es/ERR_TOO_BIG --- squid-5.8/errors/es/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_TOO_BIG 2023-05-01 10:38:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          La petición o la respuesta es demasiado larga.

          +
          + +

          Si está haciendo una petición POST o PUT, lo que está intentando subir es demasiado grande.

          +

          Si está haciendo una petición GET, entonces que está tratando de bajar es demasiado grande.

          +

          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-5.8/errors/es/ERR_UNSUP_HTTPVERSION squid-5.9/errors/es/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/es/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_UNSUP_HTTPVERSION 2023-05-01 10:38:25.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          Version HTTP no soportada

          +
          +
          + +
          +

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

          + +
          +

          Version HTTP no soportada

          +
          + +

          Este Squid no acepta la version HTTP que tu estas pretendiendo usar.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_UNSUP_REQ squid-5.9/errors/es/ERR_UNSUP_REQ --- squid-5.8/errors/es/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_UNSUP_REQ 2023-05-01 10:38:25.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Método de la petición y protocolo no soportados.

          +
          + +

          Squid no admite todos los métodos para todos los protocolos de acceso. Por ejemplo, no se puede hacer un POST a un servidor Gopher.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_URN_RESOLVE squid-5.9/errors/es/ERR_URN_RESOLVE --- squid-5.8/errors/es/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_URN_RESOLVE 2023-05-01 10:38:25.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: La URN requerida no pudo ser obtenida. + + +
          +

          ERROR

          +

          No se ha podido obtener una URL para el URN solicitado

          +
          +
          + +
          +

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

          + +
          +

          No se puede resolver el URN

          +
          + +

          Hey, no espere mucho de URNs en %T :)

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_WRITE_ERROR squid-5.9/errors/es/ERR_WRITE_ERROR --- squid-5.8/errors/es/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_WRITE_ERROR 2023-05-01 10:38:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Error de Escritura

          +
          + +

          El sistema ha devuelto: %E

          + +

          Se ha producido un error al escribir datos de la red. Por favor, inténtelo de nuevo.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/es/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/es/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:38:25.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido conseguir + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido conseguir

          +
          +
          + +
          +

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

          + +
          +

          Respuesta vacía (tamaño cero)

          +
          + +

          Squid no ha recibido ninguna información en respuesta a esta petición.

          + +

          Su administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_ACCESS_DENIED squid-5.9/errors/es-mx/ERR_ACCESS_DENIED --- squid-5.8/errors/es-mx/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_ACCESS_DENIED 2023-05-01 10:38:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Acceso Denegado

          +
          + +

          La configuración de control de acceso evita que su solicitud sea procesada en este momento. Por favor, comuníquese con su proveedor de servicios si cree que esto es incorrecto.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/es-mx/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/es-mx/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:38:11.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Cuota de tiempo excedida.

          +
          + +

          Este proxy limita el tiempo en línea mediante cuotas. El tiempo asingnado se ha agotado pero se reiniciara cuando el periodo configurado inicie nuevamente.

          +

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

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_AGENT_CONFIGURE squid-5.9/errors/es-mx/ERR_AGENT_CONFIGURE --- squid-5.8/errors/es-mx/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_AGENT_CONFIGURE 2023-05-01 10:38:11.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Configuración del Navegador de Internet + + +
          +

          ERROR

          +

          Configuración del Navegador de Internet

          +
          +
          + +
          +
          +

          La configuración del Navegador de Internet necesita ser corregida para usar esta red.

          +
          + +

          Como encontrar estas configuraciones en tu navegador:

          + +
          +For Firefox browsers go to: +
            +
          • Herramientas -> Opciones -> Avanzado -> Red -> Ajustes de conexión
          • +
          • En el campo de entrada de HTTP proxy escribe el nombre del proxy %h y el número del puerto %b
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Herramientas -> Opciones de Internet -> Conexión -> Preferencias de RED ->Proxy
          • +
          • En el campo de entrada de HTTP proxy escribe el nombre del proxy %h y el número del puerto %b
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Herramientas -> Opciones -> Avanzado -> Red -> Servidores Proxy
          • +
          • En el campo de entrada de HTTP proxy escribe el nombre del proxy %h y el número del puerto %b
          • +
          +
          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_AGENT_WPAD squid-5.9/errors/es-mx/ERR_AGENT_WPAD --- squid-5.8/errors/es-mx/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_AGENT_WPAD 2023-05-01 10:38:11.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Configuración del Navegador de Internet + + +
          +

          ERROR

          +

          Configuración del Navegador de Internet

          +
          +
          + +
          +
          +

          La configuración del Navegador de Internet necesita ser corregida para usar esta red.

          +
          + +

          Como encontrar estas configuraciones en tu navegador:

          + +
          +For Firefox browsers go to: +
            +
          • Herramientas -> Opciones -> Avanzado -> Red -> Ajustes de conexión
          • +
          • Seleccione Detectar preferencias automáticamente
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Herramientas -> Opciones de Internet -> Conexión -> Preferencias de RED ->Proxy
          • +
          • Selecciona la opción Detección Automática de Proxy
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Herramientas -> Opciones -> Avanzado -> Red -> Servidores Proxy
          • +
          • Selecciona la opción Usar Configuración automática de Proxy
          • +
          +
          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/es-mx/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/es-mx/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:38:11.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: Acceso Denegado al Caché + + +
          +

          ERROR

          +

          Acceso a Caché denegado

          +
          +
          + +
          +

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

          + +
          +

          Acceso a Caché denegado

          +
          + +

          Lo siento, no puedes a solicitar %U de este Administrador de Caché hasta que te hayas autenticado.

          + +

          Por favor contacte al administrador del caché si tiene problemas para autenticarse.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/es-mx/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/es-mx/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:38:12.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: Acceso Denegado al Administrador del Caché + + +
          +

          ERROR

          +

          Acceso Denegado al Administrador del Caché.

          +
          +
          + +
          +

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

          + +
          +

          Acceso Denegado al Administrador del Caché.

          +
          + +

          Lo siento, no puedes a solicitar %U de este Administrador de Caché hasta que te hayas autenticado.

          + +

          Por favor contacte al administrador del caché si tiene dificultad para autenticarse, o si usted es el administrador, lea la documentación de Squid sobre interfaz del cache manager y revise en el log de caché por mensajes de error más detallados.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_CANNOT_FORWARD squid-5.9/errors/es-mx/ERR_CANNOT_FORWARD --- squid-5.8/errors/es-mx/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_CANNOT_FORWARD 2023-05-01 10:38:12.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          No se puede reenviar la solicitud en este momento.

          +
          + +

          Esta solicitud no se pudo reenviar al servidor de origen ni a ningún caché principal.

          + +

          Algunos problemas posibles son:

          +
            +
          • Se requiere de una conexión a internet o los servidores de origen de este dominio pueden estar fuera de servicio
          • +
          • Los servidores de cache principales configurados no estan disponibles en este momento.
          • +
          • Es posible que el administrador no permita que este caché realice conexiones directas a los servidores de origen.
          • +
          + +

          El administrador del caché es %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_CONFLICT_HOST squid-5.9/errors/es-mx/ERR_CONFLICT_HOST --- squid-5.8/errors/es-mx/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_CONFLICT_HOST 2023-05-01 10:38:12.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +
          Conflicto en el host URI
          +
          + +

          Esto significa que el nombre de dominio al que intenta acceder aparentemente ya no existe en el equipo desde el que se inicio la solicitud

          + +

          Algunos problemas posibles son:

          +
            +
          • Es posible que el dominio se haya movido recientemente. Intentar de nuevo lo resolverá.
          • +
          • El sitio web puede requerir una versión local basada en el país. Usar los servidores de DNS de tu ISP pueden resolver esto.
          • +
          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_CONNECT_FAIL squid-5.9/errors/es-mx/ERR_CONNECT_FAIL --- squid-5.8/errors/es-mx/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_CONNECT_FAIL 2023-05-01 10:38:12.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          La Conexión a %I ha fallado.

          +
          + +

          El sistema ha devuelto: %E

          + +

          El host remoto o la red estan inactivos. Por favor, intente de nuevo la solicitud.

          + +

          El administrador del caché es %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_DIR_LISTING squid-5.9/errors/es-mx/ERR_DIR_LISTING --- squid-5.8/errors/es-mx/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_DIR_LISTING 2023-05-01 10:38:12.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directorio: %U + + +
          +

          Directorio: %U/

          +
          +
          + +
          +

          Contenido del Directorio:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Directorio superior (Directorio Raíz)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_DNS_FAIL squid-5.9/errors/es-mx/ERR_DNS_FAIL --- squid-5.8/errors/es-mx/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_DNS_FAIL 2023-05-01 10:38:12.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          No se puede determinar la dirección IP a partir del nombre del host %H

          +
          + +

          El servidor DNS devolvió:

          +
          +
          %z
          +
          + +

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

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_ESI squid-5.9/errors/es-mx/ERR_ESI --- squid-5.8/errors/es-mx/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_ESI 2023-05-01 10:38:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Error en el procesamiendo ESI

          +
          + +

          El procesador ESI devolvió:

          +
          +
          %Z
          +
          + +

          Esto significa que el sustituto no pudo procesar la plantilla ESI. Por favor, informe de este error al webmaster.

          + +

          Su administrador web es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_FORWARDING_DENIED squid-5.9/errors/es-mx/ERR_FORWARDING_DENIED --- squid-5.8/errors/es-mx/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_FORWARDING_DENIED 2023-05-01 10:38:13.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Reenvío denegado.

          +
          + +

          Este caché no transmitirá tu solicitud, ya que intenta aplicar una relación de conexión. Quizás el cliente en %i es un caché que no esta configurado adecuadamente.

          + +

          El administrador del caché es %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_FTP_DISABLED squid-5.9/errors/es-mx/ERR_FTP_DISABLED --- squid-5.8/errors/es-mx/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_FTP_DISABLED 2023-05-01 10:38:13.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          FTP deshabilitado

          +
          + +

          Esta caché no soporta FTP.

          + +

          El administrador del caché es %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_FTP_FAILURE squid-5.9/errors/es-mx/ERR_FTP_FAILURE --- squid-5.8/errors/es-mx/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_FTP_FAILURE 2023-05-01 10:38:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

          Ha ocurrido un error de protocolo FTP al intentar acceder a la URL: %U

          + +

          Squid ha enviado el siguiente comando FTP:

          +
          +
          %f
          +
          + +

          El servidor ha respondido con:

          +
          +
          %F
          +
          %g
          +
          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_FTP_FORBIDDEN squid-5.9/errors/es-mx/ERR_FTP_FORBIDDEN --- squid-5.8/errors/es-mx/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_FTP_FORBIDDEN 2023-05-01 10:38:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

          Ha ocurrido una falla de autenticación mientras se trataba de acceder al URL: %U

          + +

          Squid ha enviado el siguiente comando FTP:

          +
          +
          %f
          +
          + +

          El servidor ha respondido con:

          +
          +
          %F
          +
          %g
          +
          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_FTP_NOT_FOUND squid-5.9/errors/es-mx/ERR_FTP_NOT_FOUND --- squid-5.8/errors/es-mx/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_FTP_NOT_FOUND 2023-05-01 10:38:14.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

          El siguiente URL no pudo ser obtenido: %U

          + +

          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 (que no cumple con RFC 1738). Si esta es la causa, entonces el archivo puede ser encontrado en %B.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_FTP_PUT_CREATED squid-5.9/errors/es-mx/ERR_FTP_PUT_CREATED --- squid-5.8/errors/es-mx/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_FTP_PUT_CREATED 2023-05-01 10:38:14.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT realizado con éxito + + +
          +

          Operación exitosa

          +

          Archivo creado

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_FTP_PUT_ERROR squid-5.9/errors/es-mx/ERR_FTP_PUT_ERROR --- squid-5.8/errors/es-mx/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_FTP_PUT_ERROR 2023-05-01 10:38:14.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: fallo al cargar FTP + + +
          +

          ERROR

          +

          Fallo al ejecutar FTP PUT

          +
          +
          + +
          +

          Ha ocurrido un error de protocolo FTP al intentar acceder a la URL: %U

          + +

          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.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_FTP_PUT_MODIFIED squid-5.9/errors/es-mx/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/es-mx/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_FTP_PUT_MODIFIED 2023-05-01 10:38:14.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT realizado con éxito + + +
          +

          Operación exitosa

          +

          Archivo actualizado

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_FTP_UNAVAILABLE squid-5.9/errors/es-mx/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/es-mx/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_FTP_UNAVAILABLE 2023-05-01 10:38:14.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

          El servidor FTP estaba demasiado ocupado para recuperar la URL: %U

          + +

          Squid ha enviado el siguiente comando FTP:

          + +
          +
          %f
          +
          + +

          El servidor ha respondido con:

          +
          +
          %F
          +
          %g
          +
          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_GATEWAY_FAILURE squid-5.9/errors/es-mx/ERR_GATEWAY_FAILURE --- squid-5.8/errors/es-mx/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_GATEWAY_FAILURE 2023-05-01 10:38:14.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Error en puerta de enlace del proxy

          +
          + +

          Una falla interna no recuperable o un problema de configuración impide que se complete esta solicitud.

          + +

          Esto piede ser ocasionado por lo límites por el proveedor de servicios de Internet que opera este caché. Por favor, comunícate con ellos directamente si crees que esto es un error

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_ICAP_FAILURE squid-5.9/errors/es-mx/ERR_ICAP_FAILURE --- squid-5.8/errors/es-mx/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_ICAP_FAILURE 2023-05-01 10:38:15.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Error de protocolo ICAP.

          +
          + +

          El sistema ha devuelto: %E

          + +

          Esto significa que algún aspecto de la comunicación ICAP ha fallado.

          + +

          Algunos problemas posibles son:

          +
            +
          • No es posible contactar al servidor ICAP.

          • +
          • El servidor ICAP ha enviado una respuesta ilegal.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_INVALID_REQ squid-5.9/errors/es-mx/ERR_INVALID_REQ --- squid-5.8/errors/es-mx/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_INVALID_REQ 2023-05-01 10:38:15.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

          Petición No Válida se ha encontrado un error mientras se intentaba procesar la petición:

          + +
          +
          %R
          +
          + +

          Algunos problemas posibles son:

          +
            +
          • El método de solicitud (request) no ha sido definido o no es válido.

          • +
          • URL no encontrado.

          • +
          • Falta el identificador HTTP (HTTP/1.0)

          • +
          • La solicitud es demasiado grande.

          • +
          • Falta Content-Length en las solicitudes POST o PUT

          • +
          • Caracter no valido en el nombre del host; los guiones bajos (_) no están permitidos.

          • +
          • HTTP/1.1 Esperado expect: la característica ha sido requerida desde un software HTTP/1.0.

          • +
          + +

          El administrador del caché es %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_INVALID_RESP squid-5.9/errors/es-mx/ERR_INVALID_RESP --- squid-5.8/errors/es-mx/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_INVALID_RESP 2023-05-01 10:38:15.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

          Respuesta No Válida 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 estaba malformado. Por favor contacte al Operador del Sitio.

          + +

          El Administrador del caché puede darte mas detalles acerca de la naturaleza exacta del problema en caso de ser necesario.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_INVALID_URL squid-5.9/errors/es-mx/ERR_INVALID_URL --- squid-5.8/errors/es-mx/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_INVALID_URL 2023-05-01 10:38:15.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          URL no válido

          +
          + +

          Algún aspecto de la URL solicitado es incorrecto.

          + +

          Algunos problemas posibles son:

          +
            +
          • El protocolo de acceso no es correcto o no ha sido definido (debe ser http:// o similar)

          • +
          • Falta el nombre del host

          • +
          • Doble caracter de escape ilegal en la ruta del URL

          • +
          • Caracter no valido en el nombre del host; los guiones bajos (_) no están permitidos.

          • +
          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_LIFETIME_EXP squid-5.9/errors/es-mx/ERR_LIFETIME_EXP --- squid-5.8/errors/es-mx/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_LIFETIME_EXP 2023-05-01 10:38:15.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Ha expirado el tiempo de vida de la conexión

          +
          + +

          Squid ha terminado la solicitud porque se ha excedido la vida útil de la conexión.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_NO_RELAY squid-5.9/errors/es-mx/ERR_NO_RELAY --- squid-5.8/errors/es-mx/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_NO_RELAY 2023-05-01 10:38:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          No hay relay para Wais.

          +
          + +

          No esta definido el host wais relay para este cache! Grítale al administrador.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/es-mx/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/es-mx/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:38:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          No se encontró un documento válido en el caché y se especificó la directiva only-if-cached.

          +
          + +

          Has emitido una solicitud con la directiva de control del caché only-if-cached. El documento no fue encontrado en el caché, o requiere revalidación no aceptada por la directiva only-if-cached

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/error-details.txt squid-5.9/errors/es-mx/error-details.txt --- squid-5.8/errors/es-mx/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/error-details.txt 2023-05-01 10:38:18.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/es-mx/ERR_PRECONDITION_FAILED squid-5.9/errors/es-mx/ERR_PRECONDITION_FAILED --- squid-5.8/errors/es-mx/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_PRECONDITION_FAILED 2023-05-01 10:38:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Falla en condición previa.

          +
          + +

          Esto significa:

          +
          +

          Al menos una codición definida en la cabecera de la solicitud HTTP del cliente ha fallado.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/es-mx/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/es-mx/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:38:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Protocolo no soportado

          +
          + +

          Squid no soporta todos los métodos de solicitud para algunos protocolos de acceso. Por ejemplo, el protocolo SSH no es soportado actualmente.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_READ_ERROR squid-5.9/errors/es-mx/ERR_READ_ERROR --- squid-5.8/errors/es-mx/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_READ_ERROR 2023-05-01 10:38:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Error de Lectura

          +
          + +

          El sistema ha devuelto: %E

          + +

          Se ha presentado un error al leer datos de la red. Por favor, inténtelo de nuevo.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_READ_TIMEOUT squid-5.9/errors/es-mx/ERR_READ_TIMEOUT --- squid-5.8/errors/es-mx/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_READ_TIMEOUT 2023-05-01 10:38:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Expiro el Tiempo de LecturaSe acabó el tiempo máximo para lectura de datos de la red.

          +
          + +

          El sistema ha devuelto: %E

          + +

          El tiempo de espera expiró mientras se esperaba una respuesta de la red. La red o el servidor puede estar fuera de servicio o congestionados.Por favor, inténtelo de nuevo.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/es-mx/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/es-mx/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:38:17.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          No se ha podido establecer una conexión segura con %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Este proxy y el host remoto no han podido negociar una confguración de seguridad mutuamente aceptable para manejar su solicitud. Es posible que el host remoto sea incompatible con conexiones seguras o el proxy no esté satisfecho con las credenciales de seguridad del host.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_SHUTTING_DOWN squid-5.9/errors/es-mx/ERR_SHUTTING_DOWN --- squid-5.8/errors/es-mx/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_SHUTTING_DOWN 2023-05-01 10:38:17.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +

          Este caché está en el proceso de apagado y no puede atender tu solicitud en este momento. Por favor, inténtalo de nuevo.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_SOCKET_FAILURE squid-5.9/errors/es-mx/ERR_SOCKET_FAILURE --- squid-5.8/errors/es-mx/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_SOCKET_FAILURE 2023-05-01 10:38:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Fallo en Socket

          +
          + +

          El sistema ha devuelto: %E

          + +

          Squid no puede crear un socket TCP, probablemente debido a una carga excesiva. Por favor reintenta tu solicitud.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_TOO_BIG squid-5.9/errors/es-mx/ERR_TOO_BIG --- squid-5.8/errors/es-mx/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_TOO_BIG 2023-05-01 10:38:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          La petición o respuesta es demasiado larga.

          +
          + +

          Si estas haciendo una petición POST o PUT, entonces el elemento que estas intentando cargar es demasiado grande.

          +

          Si estas haciendo una petición GET, entonces el elemento que estas intentando descargar es demasiado grande.

          +

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

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_UNSUP_HTTPVERSION squid-5.9/errors/es-mx/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/es-mx/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_UNSUP_HTTPVERSION 2023-05-01 10:38:17.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          Version HTTP no soportada

          +
          +
          + +
          +

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

          + +
          +

          Version HTTP no soportada

          +
          + +

          Este Squid no acepta la version HTTP que tu estas intentando usar.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_UNSUP_REQ squid-5.9/errors/es-mx/ERR_UNSUP_REQ --- squid-5.8/errors/es-mx/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_UNSUP_REQ 2023-05-01 10:38:17.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Método de la petición y protocolo no soportados.

          +
          + +

          Squid no soporta todos los métodos de solicitud para algunos protocolos de acceso. Por ejemplo, no es posible hacer una solcitud POST a un servidor Gopher.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_URN_RESOLVE squid-5.9/errors/es-mx/ERR_URN_RESOLVE --- squid-5.8/errors/es-mx/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_URN_RESOLVE 2023-05-01 10:38:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: La URN requerida no pudo ser obtenida. + + +
          +

          ERROR

          +

          No se ha podido obtener una URL para el URN solicitado

          +
          +
          + +
          +

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

          + +
          +

          No se puede resolver el URN

          +
          + +

          Oye, no esperes mucho de las URNs en %T :)

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_WRITE_ERROR squid-5.9/errors/es-mx/ERR_WRITE_ERROR --- squid-5.8/errors/es-mx/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_WRITE_ERROR 2023-05-01 10:38:18.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Error de Escritura

          +
          + +

          El sistema ha devuelto: %E

          + +

          Se ha presentado un error al escribir datos a la red. Por favor, inténtelo de nuevo.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/es-mx/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/es-mx/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/es-mx/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/es-mx/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:38:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: El URL solicitado no se ha podido obetener + + +
          +

          ERROR

          +

          El URL solicitado no se ha podido recuperar

          +
          +
          + +
          +

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

          + +
          +

          Respuesta tamaño cero

          +
          + +

          Squid no recibió información a esta solicitud.

          + +

          El administrador del caché es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_ACCESS_DENIED squid-5.9/errors/et/ERR_ACCESS_DENIED --- squid-5.8/errors/et/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_ACCESS_DENIED 2023-05-01 10:38:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Juurdepääs keelatud.

          +
          + +

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

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/et/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/et/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:38:26.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_AGENT_CONFIGURE squid-5.9/errors/et/ERR_AGENT_CONFIGURE --- squid-5.8/errors/et/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_AGENT_CONFIGURE 2023-05-01 10:38:26.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          VIGA

          +

          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.
          • +
          +
          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_AGENT_WPAD squid-5.9/errors/et/ERR_AGENT_WPAD --- squid-5.8/errors/et/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_AGENT_WPAD 2023-05-01 10:38:26.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          VIGA

          +

          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
          • +
          +
          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/et/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/et/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:38:26.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +VIGA: Vahemälu serveri kasutamine blokeeritud + + +
          +

          VIGA

          +

          Vahemälu serveri kasutamine keelatud.

          +
          +
          + +
          +

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

          + +
          +

          Vahemälu serveri kasutamine keelatud.

          +
          + +

          abandust, teil pole õigust päringule %U kuni te pole läbinud autoriseerimist.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/et/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/et/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:38:27.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +VIGA: Vahemälu serveri haldaja kasutamine blokeeritud + + +
          +

          VIGA

          +

          Vahemälu serveri haldaja kasutamine keelatud.

          +
          +
          + +
          +

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

          + +
          +

          Vahemälu serveri haldaja kasutamine keelatud.

          +
          + +

          Vabandust, teil pole õigust päringule %U sellele vahemälu serveri haldajale, kuni te pole läbinud autoriseerimist.

          + +

          Palun kontakteeruge vahemälu serveri administraatoriga,kui teil on probleeme autoriseerimisega või kui te oleteadministraator, lugege Squidi dokumentatsiooni vahemälu serveri haldaja interfeisi kohtaja kontrollige vahemälu serveri logi täpsema veakirjelduse saamiseks.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_CANNOT_FORWARD squid-5.9/errors/et/ERR_CANNOT_FORWARD --- squid-5.8/errors/et/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_CANNOT_FORWARD 2023-05-01 10:38:27.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Päringu edastamine ebaõnnestus.

          +
          + +

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

          + +

          Some possible problems are:

          +
            +
          • 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.
          • +
          + +

          Teie teenusepakkuja aadress on %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_CONFLICT_HOST squid-5.9/errors/et/ERR_CONFLICT_HOST --- squid-5.8/errors/et/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_CONFLICT_HOST 2023-05-01 10:38:27.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_CONNECT_FAIL squid-5.9/errors/et/ERR_CONNECT_FAIL --- squid-5.8/errors/et/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_CONNECT_FAIL 2023-05-01 10:38:27.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Connection to %I failed.

          +
          + +

          Süsteem vastas: %E

          + +

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

          + +

          Teie teenusepakkuja aadress on %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_DIR_LISTING squid-5.9/errors/et/ERR_DIR_LISTING --- squid-5.8/errors/et/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_DIR_LISTING 2023-05-01 10:38:27.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_DNS_FAIL squid-5.9/errors/et/ERR_DNS_FAIL --- squid-5.8/errors/et/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_DNS_FAIL 2023-05-01 10:38:27.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Ei õnnestu saada hosti %H nimele vastavat IP aadressi

          +
          + +

          DNS server vastas:

          +
          +
          %z
          +
          + +

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

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_ESI squid-5.9/errors/et/ERR_ESI --- squid-5.8/errors/et/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_ESI 2023-05-01 10:38:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

          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-5.8/errors/et/ERR_FORWARDING_DENIED squid-5.9/errors/et/ERR_FORWARDING_DENIED --- squid-5.8/errors/et/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_FORWARDING_DENIED 2023-05-01 10:38:28.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Edastamine keelatud.

          +
          + +

          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.

          + +

          Teie teenusepakkuja aadress on %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_FTP_DISABLED squid-5.9/errors/et/ERR_FTP_DISABLED --- squid-5.8/errors/et/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_FTP_DISABLED 2023-05-01 10:38:28.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          FTP on blokeeritud

          +
          + +

          See vahemälu server ei toeta FTPd.

          + +

          Teie teenusepakkuja aadress on %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_FTP_FAILURE squid-5.9/errors/et/ERR_FTP_FAILURE --- squid-5.8/errors/et/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_FTP_FAILURE 2023-05-01 10:38:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

          An FTP protocol error occurred while trying to retrieve the URL: %U

          + +

          Squid saatis järgneva FTP käsu:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_FTP_FORBIDDEN squid-5.9/errors/et/ERR_FTP_FORBIDDEN --- squid-5.8/errors/et/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_FTP_FORBIDDEN 2023-05-01 10:38:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +

          Squid saatis järgneva FTP käsu:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_FTP_NOT_FOUND squid-5.9/errors/et/ERR_FTP_NOT_FOUND --- squid-5.8/errors/et/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_FTP_NOT_FOUND 2023-05-01 10:38:29.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

          The following URL could not be retrieved: %U

          + +

          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.

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_FTP_PUT_CREATED squid-5.9/errors/et/ERR_FTP_PUT_CREATED --- squid-5.8/errors/et/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_FTP_PUT_CREATED 2023-05-01 10:38:29.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operation õnnestus

          +

          Fail on loodud

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_FTP_PUT_ERROR squid-5.9/errors/et/ERR_FTP_PUT_ERROR --- squid-5.8/errors/et/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_FTP_PUT_ERROR 2023-05-01 10:38:29.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +VIGA: FTP PUT ebaõnnestus + + +
          +

          VIGA

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          An FTP protocol error occurred while trying to retrieve the URL: %U

          + +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_FTP_PUT_MODIFIED squid-5.9/errors/et/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/et/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_FTP_PUT_MODIFIED 2023-05-01 10:38:29.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operation õnnestus

          +

          Fail on uuendatud

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_FTP_UNAVAILABLE squid-5.9/errors/et/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/et/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_FTP_UNAVAILABLE 2023-05-01 10:38:29.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +

          Squid saatis järgneva FTP käsu:

          + +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_GATEWAY_FAILURE squid-5.9/errors/et/ERR_GATEWAY_FAILURE --- squid-5.8/errors/et/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_GATEWAY_FAILURE 2023-05-01 10:38:29.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

          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.

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_ICAP_FAILURE squid-5.9/errors/et/ERR_ICAP_FAILURE --- squid-5.8/errors/et/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_ICAP_FAILURE 2023-05-01 10:38:30.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

          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:

          +
            +
          • The ICAP server is not reachable.

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

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_INVALID_REQ squid-5.9/errors/et/ERR_INVALID_REQ --- squid-5.8/errors/et/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_INVALID_REQ 2023-05-01 10:38:30.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +
          %R
          +
          + +

          Some possible problems are:

          +
            +
          • Puudub või tundmatu päringu meetod (GET, POST)

          • +
          • Puudub URL

          • +
          • Puudub HTTP identifikaator (HTTP/1.0)

          • +
          • 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.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_INVALID_RESP squid-5.9/errors/et/ERR_INVALID_RESP --- squid-5.8/errors/et/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_INVALID_RESP 2023-05-01 10:38:30.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

          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.

          + +

          Teie vehemälu serveri administraator võib saada anda täiendavat infot selle vea detailide kohta.

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_INVALID_URL squid-5.9/errors/et/ERR_INVALID_URL --- squid-5.8/errors/et/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_INVALID_URL 2023-05-01 10:38:30.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Vigane URL

          +
          + +

          Mõni osa URList on vigane.

          + +

          Some possible problems are:

          +
            +
          • Puuduv või vigane protokoll (peaks olema http:// või sarnane)

          • +
          • Puuduv hosti nimi

          • +
          • Vigane topelt-kaldkriips URLi teel

          • +
          • keelatud sümbolid hosti nimes; alakriipsud pole lubatud

          • +
          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_LIFETIME_EXP squid-5.9/errors/et/ERR_LIFETIME_EXP --- squid-5.8/errors/et/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_LIFETIME_EXP 2023-05-01 10:38:30.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Ühenduse eluaeg lõppes

          +
          + +

          Squid katkestas päringu, kuna see kestis liiga kaua.

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_NO_RELAY squid-5.9/errors/et/ERR_NO_RELAY --- squid-5.8/errors/et/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_NO_RELAY 2023-05-01 10:38:30.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Wais edastaja puudub

          +
          + +

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

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/et/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/et/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:38:31.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Kehtiv dokument puudub vahemälu serverist ja päring sisaldas only-if-cached direktiivi.

          +
          + +

          Te edastasite päringu only-if-cached vahemälu kontrolli direktiiviga. Dokumenti ei leitud vahemälu serverist võita nõudis uuendamist, mis on aga keelatud only-if-cached direktiiviga.

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/error-details.txt squid-5.9/errors/et/error-details.txt --- squid-5.8/errors/et/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/error-details.txt 2023-05-01 10:38:33.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/et/ERR_PRECONDITION_FAILED squid-5.9/errors/et/ERR_PRECONDITION_FAILED --- squid-5.8/errors/et/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_PRECONDITION_FAILED 2023-05-01 10:38:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/et/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/et/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:38:31.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_READ_ERROR squid-5.9/errors/et/ERR_READ_ERROR --- squid-5.8/errors/et/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_READ_ERROR 2023-05-01 10:38:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Viga lugemisel

          +
          + +

          Süsteem vastas: %E

          + +

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

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_READ_TIMEOUT squid-5.9/errors/et/ERR_READ_TIMEOUT --- squid-5.8/errors/et/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_READ_TIMEOUT 2023-05-01 10:38:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Lugeja kannatus katkes

          +
          + +

          Süsteem vastas: %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.

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/et/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/et/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:38:32.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Failed to establish a secure connection to %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_SHUTTING_DOWN squid-5.9/errors/et/ERR_SHUTTING_DOWN --- squid-5.8/errors/et/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_SHUTTING_DOWN 2023-05-01 10:38:32.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

          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.

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_SOCKET_FAILURE squid-5.9/errors/et/ERR_SOCKET_FAILURE --- squid-5.8/errors/et/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_SOCKET_FAILURE 2023-05-01 10:38:32.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Pistiku viga

          +
          + +

          Süsteem vastas: %E

          + +

          Squid ei suuda tekitada TCP pistikut, ilmselt ülekoormuse tõttu. Palun korrake päringut.

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_TOO_BIG squid-5.9/errors/et/ERR_TOO_BIG --- squid-5.8/errors/et/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_TOO_BIG 2023-05-01 10:38:32.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Päring või vastus on liiga suur.

          +
          + +

          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.

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_UNSUP_HTTPVERSION squid-5.9/errors/et/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/et/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_UNSUP_HTTPVERSION 2023-05-01 10:38:32.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          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.

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_UNSUP_REQ squid-5.9/errors/et/ERR_UNSUP_REQ --- squid-5.8/errors/et/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_UNSUP_REQ 2023-05-01 10:38:32.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Tundmatu päringu meetod ja protokoll

          +
          + +

          Squid ei toeta kõiki päringu meetodeid kõikide protokollidega. Näiteks, te ei saa teha POST operatsiooni Gopher päringus.

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_URN_RESOLVE squid-5.9/errors/et/ERR_URN_RESOLVE --- squid-5.8/errors/et/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_URN_RESOLVE 2023-05-01 10:38:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          VIGA

          +

          Päring URNile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Ei suuda lahendada URN

          +
          + +

          Hei, mida sa ootad URNidelt %T peal:)

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_WRITE_ERROR squid-5.9/errors/et/ERR_WRITE_ERROR --- squid-5.8/errors/et/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_WRITE_ERROR 2023-05-01 10:38:33.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Viga kirjutamisel

          +
          + +

          Süsteem vastas: %E

          + +

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

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/et/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/et/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/et/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/et/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:38:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIGA: Päring URLile ei saa vastust + + +
          +

          VIGA

          +

          Päring URLile ei saa vastust

          +
          +
          + +
          +

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

          + +
          +

          Vastus on tühi

          +
          + +

          Squid ei saanud selle päringu vastuseks midagi.

          + +

          Teie teenusepakkuja aadress on %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_ACCESS_DENIED squid-5.9/errors/fa/ERR_ACCESS_DENIED --- squid-5.8/errors/fa/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_ACCESS_DENIED 2023-05-01 10:38:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          دسترسی رد شد.

          +
          + +

          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-5.8/errors/fa/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/fa/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/fa/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:38:33.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          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-5.8/errors/fa/ERR_AGENT_CONFIGURE squid-5.9/errors/fa/ERR_AGENT_CONFIGURE --- squid-5.8/errors/fa/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_AGENT_CONFIGURE 2023-05-01 10:38:34.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          خطا

          +

          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-5.8/errors/fa/ERR_AGENT_WPAD squid-5.9/errors/fa/ERR_AGENT_WPAD --- squid-5.8/errors/fa/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_AGENT_WPAD 2023-05-01 10:38:34.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          خطا

          +

          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-5.8/errors/fa/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/fa/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/fa/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:38:34.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +خطا: رد شدن دسترسی به نهانگاه + + +
          +

          خطا

          +

          دسترسی به نهانگاه رد شد.

          +
          +
          + +
          +

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

          + +
          +

          دسترسی به نهانگاه رد شد.

          +
          + +

          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-5.8/errors/fa/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/fa/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/fa/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:38:34.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +خطا: رد شدن دسترسی برای مدیریت نهانگاه + + +
          +

          خطا

          +

          دسترسی مدیریت نهانگاه رد شد.

          +
          +
          + +
          +

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

          + +
          +

          دسترسی مدیریت نهانگاه رد شد.

          +
          + +

          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-5.8/errors/fa/ERR_CANNOT_FORWARD squid-5.9/errors/fa/ERR_CANNOT_FORWARD --- squid-5.8/errors/fa/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_CANNOT_FORWARD 2023-05-01 10:38:34.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          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.

          + +

          بعضی از مشکلات احتمالی:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_CONFLICT_HOST squid-5.9/errors/fa/ERR_CONFLICT_HOST --- squid-5.8/errors/fa/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_CONFLICT_HOST 2023-05-01 10:38:34.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          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.

          + +

          بعضی از مشکلات احتمالی:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_CONNECT_FAIL squid-5.9/errors/fa/ERR_CONNECT_FAIL --- squid-5.8/errors/fa/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_CONNECT_FAIL 2023-05-01 10:38:35.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          برقراری ارتباط به l% با عدم موفقیت همراه بود.

          +
          + +

          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-5.8/errors/fa/ERR_DIR_LISTING squid-5.9/errors/fa/ERR_DIR_LISTING --- squid-5.8/errors/fa/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_DIR_LISTING 2023-05-01 10:38:35.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +مسیر : U% + + +
          +

          مسیر: %U/

          +
          +
          + +
          +

          محتویات مسیر:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          مسیر اصلی (مسیر ریشه)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_DNS_FAIL squid-5.9/errors/fa/ERR_DNS_FAIL --- squid-5.8/errors/fa/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_DNS_FAIL 2023-05-01 10:38:35.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          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

          +
          + +

          کارگزار DNS برگشت داده‌ :

          +
          +
          %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-5.8/errors/fa/ERR_ESI squid-5.9/errors/fa/ERR_ESI --- squid-5.8/errors/fa/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_ESI 2023-05-01 10:38:35.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          پردازش ESI با عدم موفقیت همراه بود.

          +
          + +

          پردازش ESI برگشت داده:

          +
          +
          %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-5.8/errors/fa/ERR_FORWARDING_DENIED squid-5.9/errors/fa/ERR_FORWARDING_DENIED --- squid-5.8/errors/fa/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_FORWARDING_DENIED 2023-05-01 10:38:35.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          امکان Forward بسته شده است.

          +
          + +

          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-5.8/errors/fa/ERR_FTP_DISABLED squid-5.9/errors/fa/ERR_FTP_DISABLED --- squid-5.8/errors/fa/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_FTP_DISABLED 2023-05-01 10:38:35.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          FTP قابل دسترس نیست.

          +
          + +

          این کارگزار Cache از قرارداد FTP پشتیبانی نمی‌کند.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_FTP_FAILURE squid-5.9/errors/fa/ERR_FTP_FAILURE --- squid-5.8/errors/fa/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_FTP_FAILURE 2023-05-01 10:38:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          یک خطا روی پروتکل FTP در زمان اتصال به آدرس مورد نظر رخ داد.: %U

          + +

          اسکویید دستور FTP روبرو را فرستاد:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_FTP_FORBIDDEN squid-5.9/errors/fa/ERR_FTP_FORBIDDEN --- squid-5.8/errors/fa/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_FTP_FORBIDDEN 2023-05-01 10:38:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          موقع تلاش جهت دسترسی به آدرس مورد نظر عمل شناسایی کاربر بر روی FTP با عدم موفقیت همراه بود. : %U

          + +

          اسکویید دستور FTP روبرو را فرستاد:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_FTP_NOT_FOUND squid-5.9/errors/fa/ERR_FTP_NOT_FOUND --- squid-5.8/errors/fa/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_FTP_NOT_FOUND 2023-05-01 10:38:36.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following URL could not be retrieved: %U

          + +

          اسکویید دستور 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-5.8/errors/fa/ERR_FTP_PUT_CREATED squid-5.9/errors/fa/ERR_FTP_PUT_CREATED --- squid-5.8/errors/fa/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_FTP_PUT_CREATED 2023-05-01 10:38:36.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          عملیات موفقیت‌آمیز

          +

          فایل ایجاد شد.

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_FTP_PUT_ERROR squid-5.9/errors/fa/ERR_FTP_PUT_ERROR --- squid-5.8/errors/fa/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_FTP_PUT_ERROR 2023-05-01 10:38:36.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +خطا: بارگذاری روی FTP با موفقیت همراه نبود + + +
          +

          خطا

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          یک خطا روی پروتکل FTP در زمان اتصال به آدرس مورد نظر رخ داد.: %U

          + +

          اسکویید دستور 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-5.8/errors/fa/ERR_FTP_PUT_MODIFIED squid-5.9/errors/fa/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/fa/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_FTP_PUT_MODIFIED 2023-05-01 10:38:37.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          عملیات موفقیت‌آمیز

          +

          فایل بروزرسانی شد.

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_FTP_UNAVAILABLE squid-5.9/errors/fa/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/fa/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_FTP_UNAVAILABLE 2023-05-01 10:38:37.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +

          اسکویید دستور FTP روبرو را فرستاد:

          + +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_GATEWAY_FAILURE squid-5.9/errors/fa/ERR_GATEWAY_FAILURE --- squid-5.8/errors/fa/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_GATEWAY_FAILURE 2023-05-01 10:38:37.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          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-5.8/errors/fa/ERR_ICAP_FAILURE squid-5.9/errors/fa/ERR_ICAP_FAILURE --- squid-5.8/errors/fa/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_ICAP_FAILURE 2023-05-01 10:38:37.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          خطا در قرارداد ICAP

          +
          + +

          The system returned: %E

          + +

          This means that some aspect of the ICAP communication failed.

          + +

          بعضی از مشکلات احتمالی:

          +
            +
          • کارگزار ICAP قابل دسترس نیست.

          • +
          • یک جواب نامعتبر از خادم ICAP دریافت شد.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_INVALID_REQ squid-5.9/errors/fa/ERR_INVALID_REQ --- squid-5.8/errors/fa/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_INVALID_REQ 2023-05-01 10:38:37.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          درخواست نامعتبر این خطا در زمان پردازش این درخواست روی داده بود:

          + +
          +
          %R
          +
          + +

          بعضی از مشکلات احتمالی:

          +
            +
          • فقدان یا ناشناخته بودن روش درخواست.

          • +
          • فقدان نشانی اینترنتی

          • +
          • فقدان شناسه HTTP (نسخه 1.0)

          • +
          • درخواست بسیار بزرگ است.

          • +
          • طول محتویات درخواست برای PUT یا POST کم است.

          • +
          • کاراکتر غیرمجاز در نام دستگاه، زیرین خط (ـ) اجازه داده نشده است.

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

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_INVALID_RESP squid-5.9/errors/fa/ERR_INVALID_RESP --- squid-5.8/errors/fa/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_INVALID_RESP 2023-05-01 10:38:37.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          پاسخ نامعتبر این خطا در زمان پردازش درخواست روی‌ داده بود:

          + +
          +
          %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-5.8/errors/fa/ERR_INVALID_URL squid-5.9/errors/fa/ERR_INVALID_URL --- squid-5.8/errors/fa/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_INVALID_URL 2023-05-01 10:38:38.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          نشانی اینترنتی نامعتبر

          +
          + +

          برخی از صُور نشانی اینترنتی درخواست شده ناصحیح است.

          + +

          بعضی از مشکلات احتمالی:

          +
            +
          • فقدان یا ناصحیح بودن قرارداد دست‌یابی (باید به فرمhttp:// یا شبیه آن باشد)

          • +
          • فقدان hostname

          • +
          • ۲ فاصله خالی غیر مجاز در مسیر نشانی اینترنتی

          • +
          • کاراکتر غیرمجاز در نام دستگاه، زیرین خط (ـ) اجازه داده نشده است.

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_LIFETIME_EXP squid-5.9/errors/fa/ERR_LIFETIME_EXP --- squid-5.8/errors/fa/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_LIFETIME_EXP 2023-05-01 10:38:38.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          زمان ارتباط منقضی شد.

          +
          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_NO_RELAY squid-5.9/errors/fa/ERR_NO_RELAY --- squid-5.8/errors/fa/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_NO_RELAY 2023-05-01 10:38:38.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          عدم رله Wais

          +
          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/fa/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/fa/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:38:38.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          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-5.8/errors/fa/error-details.txt squid-5.9/errors/fa/error-details.txt --- squid-5.8/errors/fa/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/error-details.txt 2023-05-01 10:38:40.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/fa/ERR_PRECONDITION_FAILED squid-5.9/errors/fa/ERR_PRECONDITION_FAILED --- squid-5.8/errors/fa/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_PRECONDITION_FAILED 2023-05-01 10:38:38.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/fa/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/fa/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:38:38.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_READ_ERROR squid-5.9/errors/fa/ERR_READ_ERROR --- squid-5.8/errors/fa/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_READ_ERROR 2023-05-01 10:38:39.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          خطا در خواندن

          +
          + +

          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-5.8/errors/fa/ERR_READ_TIMEOUT squid-5.9/errors/fa/ERR_READ_TIMEOUT --- squid-5.8/errors/fa/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_READ_TIMEOUT 2023-05-01 10:38:39.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          سپری شدن زمان مجاز خواندن

          +
          + +

          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-5.8/errors/fa/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/fa/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/fa/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:38:39.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          ایجاد یک ارتباط امن به I% با عدم موفقیت همراه بود.

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/fa/ERR_SHUTTING_DOWN squid-5.9/errors/fa/ERR_SHUTTING_DOWN --- squid-5.8/errors/fa/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_SHUTTING_DOWN 2023-05-01 10:38:39.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          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-5.8/errors/fa/ERR_SOCKET_FAILURE squid-5.9/errors/fa/ERR_SOCKET_FAILURE --- squid-5.8/errors/fa/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_SOCKET_FAILURE 2023-05-01 10:38:39.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          خرابی سوکت

          +
          + +

          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-5.8/errors/fa/ERR_TOO_BIG squid-5.9/errors/fa/ERR_TOO_BIG --- squid-5.8/errors/fa/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_TOO_BIG 2023-05-01 10:38:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          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.

          +
          + +

          اگر شما یک درخواست PUT یا POST دارید، موردی که شما در تلاش برای بارگذاری هستید بسیار بزرگ است.

          +

          اگر شما یک درخواست 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.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_UNSUP_HTTPVERSION squid-5.9/errors/fa/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/fa/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_UNSUP_HTTPVERSION 2023-05-01 10:38:40.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          نسخه HTTP پشتیبانی نشده

          +
          +
          + +
          +

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

          + +
          +

          نسخه HTTP پشتیبانی نشده

          +
          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_UNSUP_REQ squid-5.9/errors/fa/ERR_UNSUP_REQ --- squid-5.8/errors/fa/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_UNSUP_REQ 2023-05-01 10:38:40.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          روش پشتیبانی‌نشده درخواست و قرارداد

          +
          + +

          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-5.8/errors/fa/ERR_URN_RESOLVE squid-5.9/errors/fa/ERR_URN_RESOLVE --- squid-5.8/errors/fa/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_URN_RESOLVE 2023-05-01 10:38:40.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          خطا

          +

          آدرسی برای URN درخواست شده موجود نبود.

          +
          +
          + +
          +

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

          + +
          +

          عدم توانایی در ترجمه URN.

          +
          + +

          آهای، انتظار زیادی از URNها بر روی T% نداشته باش :)

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fa/ERR_WRITE_ERROR squid-5.9/errors/fa/ERR_WRITE_ERROR --- squid-5.8/errors/fa/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_WRITE_ERROR 2023-05-01 10:38:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          خطا در نوشتن

          +
          + +

          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-5.8/errors/fa/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/fa/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/fa/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fa/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:38:40.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +خطا: آدرس درخواست شده را نمی‌توانست دریافت شود + + +
          +

          خطا

          +

          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-5.8/errors/fi/ERR_ACCESS_DENIED squid-5.9/errors/fi/ERR_ACCESS_DENIED --- squid-5.8/errors/fi/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_ACCESS_DENIED 2023-05-01 10:38:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Pääsy evätty.

          +
          + +

          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-5.8/errors/fi/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/fi/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/fi/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:38:41.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

          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-5.8/errors/fi/ERR_AGENT_CONFIGURE squid-5.9/errors/fi/ERR_AGENT_CONFIGURE --- squid-5.8/errors/fi/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_AGENT_CONFIGURE 2023-05-01 10:38:41.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          VIRHE

          +

          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-5.8/errors/fi/ERR_AGENT_WPAD squid-5.9/errors/fi/ERR_AGENT_WPAD --- squid-5.8/errors/fi/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_AGENT_WPAD 2023-05-01 10:38:41.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          VIRHE

          +

          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
          • +
          • Valitse Automaattisesti haetut asetukset
          • +
          +
          + +
          +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-5.8/errors/fi/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/fi/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/fi/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:38:41.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +VIRHE: Pääsy välityspalvelimeen evätty + + +
          +

          VIRHE

          +

          Pääsy välityspalvelimeen evätty.

          +
          +
          + +
          +

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

          + +
          +

          Pääsy välityspalvelimeen evätty.

          +
          + +

          Sinulla ei tällä hetkellä ole oikeutta pyytää osoitetta %U tästä välityspalvelimesta ennen kuin olet todentanut henkilöllisyytesi.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/fi/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/fi/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:38:42.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +VIRHE: Pääsy välityspalvelimen hallintaan evätty + + +
          +

          VIRHE

          +

          Pääsy välityspalvelimen hallintaan evätty.

          +
          +
          + +
          +

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

          + +
          +

          Pääsy välityspalvelimen hallintaan evätty.

          +
          + +

          Sinulla ei tällä hetkellä ole oikeutta pyytää osoitetta %U tästä välityspalvelimen hallinnasta ennen kuin olet osoittanut henkilöllisyytesi.

          + +

          Jos sinulla on hankaluuksia hekilöllisyytesi osoittamisessa, ota yhteyttä välityspalvelimen ylläpitoon tai jos sinä olet ylläpitäjä, lue Squidin dokumentaatiosta välityspalvelimen hallinnan käyttöliittymästä ja tarkista välityspalvelimen lokista tarkemmat virheilmoitukset.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_CANNOT_FORWARD squid-5.9/errors/fi/ERR_CANNOT_FORWARD --- squid-5.8/errors/fi/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_CANNOT_FORWARD 2023-05-01 10:38:42.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Pyyntöä ei voitu edelleenohjata.

          +
          + +

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

          + +

          Muutamia mahdollisia ongelmia ovat:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_CONFLICT_HOST squid-5.9/errors/fi/ERR_CONFLICT_HOST --- squid-5.8/errors/fi/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_CONFLICT_HOST 2023-05-01 10:38:42.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

          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.

          + +

          Muutamia mahdollisia ongelmia ovat:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_CONNECT_FAIL squid-5.9/errors/fi/ERR_CONNECT_FAIL --- squid-5.8/errors/fi/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_CONNECT_FAIL 2023-05-01 10:38:42.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Connection to %I failed.

          +
          + +

          Järjestelmä palautti viestin:%E

          + +

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

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_DIR_LISTING squid-5.9/errors/fi/ERR_DIR_LISTING --- squid-5.8/errors/fi/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_DIR_LISTING 2023-05-01 10:38:42.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Hakemisto: %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_DNS_FAIL squid-5.9/errors/fi/ERR_DNS_FAIL --- squid-5.8/errors/fi/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_DNS_FAIL 2023-05-01 10:38:42.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          DNS-palvelin palautti viestin:

          +
          +
          %z
          +
          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_ESI squid-5.9/errors/fi/ERR_ESI --- squid-5.8/errors/fi/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_ESI 2023-05-01 10:38:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          ESI Processing failed.

          +
          + +

          ESI prosessori palautti:

          +
          +
          %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-5.8/errors/fi/ERR_FORWARDING_DENIED squid-5.9/errors/fi/ERR_FORWARDING_DENIED --- squid-5.8/errors/fi/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_FORWARDING_DENIED 2023-05-01 10:38:43.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Edelleenohjaus evätty.

          +
          + +

          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-5.8/errors/fi/ERR_FTP_DISABLED squid-5.9/errors/fi/ERR_FTP_DISABLED --- squid-5.8/errors/fi/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_FTP_DISABLED 2023-05-01 10:38:43.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          FTP on poistettu käytöstä

          +
          + +

          FTP on poistettu käytöstä.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_FTP_FAILURE squid-5.9/errors/fi/ERR_FTP_FAILURE --- squid-5.8/errors/fi/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_FTP_FAILURE 2023-05-01 10:38:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

          Tapahtui FTP-protokollavirhe yritettäessä hakea URL-osoitetta: %U

          + +

          Squid lähetti seuraavan FTP-komennon:

          +
          +
          %f
          +
          + +

          Palvelin vastasi:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_FTP_FORBIDDEN squid-5.9/errors/fi/ERR_FTP_FORBIDDEN --- squid-5.8/errors/fi/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_FTP_FORBIDDEN 2023-05-01 10:38:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +

          Squid lähetti seuraavan FTP-komennon:

          +
          +
          %f
          +
          + +

          Palvelin vastasi:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_FTP_NOT_FOUND squid-5.9/errors/fi/ERR_FTP_NOT_FOUND --- squid-5.8/errors/fi/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_FTP_NOT_FOUND 2023-05-01 10:38:43.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

          The following URL could not be retrieved: %U

          + +

          Squid lähetti seuraavan FTP-komennon:

          +
          +
          %f
          +
          + +

          Palvelin vastasi:

          +
          +
          %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-5.8/errors/fi/ERR_FTP_PUT_CREATED squid-5.9/errors/fi/ERR_FTP_PUT_CREATED --- squid-5.8/errors/fi/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_FTP_PUT_CREATED 2023-05-01 10:38:44.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Toiminto onnistui

          +

          Tiedosto luotu

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_FTP_PUT_ERROR squid-5.9/errors/fi/ERR_FTP_PUT_ERROR --- squid-5.8/errors/fi/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_FTP_PUT_ERROR 2023-05-01 10:38:44.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +VIRHE: FTP lähetys epäonnistui + + +
          +

          VIRHE

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          Tapahtui FTP-protokollavirhe yritettäessä hakea URL-osoitetta: %U

          + +

          Squid lähetti seuraavan FTP-komennon:

          +
          +
          %f
          +
          + +

          Palvelin vastasi:

          +
          +
          %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-5.8/errors/fi/ERR_FTP_PUT_MODIFIED squid-5.9/errors/fi/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/fi/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_FTP_PUT_MODIFIED 2023-05-01 10:38:44.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Toiminto onnistui

          +

          Tiedosto päivitetty

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_FTP_UNAVAILABLE squid-5.9/errors/fi/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/fi/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_FTP_UNAVAILABLE 2023-05-01 10:38:44.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +

          Squid lähetti seuraavan FTP-komennon:

          + +
          +
          %f
          +
          + +

          Palvelin vastasi:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_GATEWAY_FAILURE squid-5.9/errors/fi/ERR_GATEWAY_FAILURE --- squid-5.8/errors/fi/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_GATEWAY_FAILURE 2023-05-01 10:38:44.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

          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-5.8/errors/fi/ERR_ICAP_FAILURE squid-5.9/errors/fi/ERR_ICAP_FAILURE --- squid-5.8/errors/fi/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_ICAP_FAILURE 2023-05-01 10:38:45.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          ICAP protokollavirhe.

          +
          + +

          Järjestelmä palautti viestin:%E

          + +

          This means that some aspect of the ICAP communication failed.

          + +

          Muutamia mahdollisia ongelmia ovat:

          +
            +
          • ICAP palvelin ei ole tavoitettavissa.

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

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_INVALID_REQ squid-5.9/errors/fi/ERR_INVALID_REQ --- squid-5.8/errors/fi/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_INVALID_REQ 2023-05-01 10:38:45.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +
          %R
          +
          + +

          Muutamia mahdollisia ongelmia ovat:

          +
            +
          • Puuttuva tai tuntematon hakupyynnön tyyppi

          • +
          • Puuttuva URL

          • +
          • Puuttuva HTTP-tunniste (HTTP/1.0).

          • +
          • 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.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_INVALID_RESP squid-5.9/errors/fi/ERR_INVALID_RESP --- squid-5.8/errors/fi/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_INVALID_RESP 2023-05-01 10:38:45.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

          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-5.8/errors/fi/ERR_INVALID_URL squid-5.9/errors/fi/ERR_INVALID_URL --- squid-5.8/errors/fi/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_INVALID_URL 2023-05-01 10:38:45.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Virheellinen URL-osoite

          +
          + +

          Joku osa URL-osoitetta on virheellinen.

          + +

          Muutamia mahdollisia ongelmia ovat:

          +
            +
          • Puuttuva tai virheellinen yhteyskäytäntö (tulisi olla http:// tai vastaava)

          • +
          • Puuttuva palvelinnimi

          • +
          • Kielletty kaksois-escape URL-osoitteessa

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

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_LIFETIME_EXP squid-5.9/errors/fi/ERR_LIFETIME_EXP --- squid-5.8/errors/fi/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_LIFETIME_EXP 2023-05-01 10:38:45.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Yhteyden elinaika umpeutui

          +
          + +

          Squid on keskeyttänyt hakupuunnön, koska se ylitti suurimman mahdollisimman yhteyden elinajan.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_NO_RELAY squid-5.9/errors/fi/ERR_NO_RELAY --- squid-5.8/errors/fi/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_NO_RELAY 2023-05-01 10:38:45.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Ei WAIS-linkkiä

          +
          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/fi/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/fi/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:38:46.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

          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-5.8/errors/fi/error-details.txt squid-5.9/errors/fi/error-details.txt --- squid-5.8/errors/fi/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/error-details.txt 2023-05-01 10:38:48.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/fi/ERR_PRECONDITION_FAILED squid-5.9/errors/fi/ERR_PRECONDITION_FAILED --- squid-5.8/errors/fi/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_PRECONDITION_FAILED 2023-05-01 10:38:46.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Precondition Failed.

          +
          + +

          Tämä tarkoittaa:

          +
          +

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

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/fi/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/fi/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:38:46.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_READ_ERROR squid-5.9/errors/fi/ERR_READ_ERROR --- squid-5.8/errors/fi/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_READ_ERROR 2023-05-01 10:38:46.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Lukuvirhe

          +
          + +

          Järjestelmä palautti viestin:%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-5.8/errors/fi/ERR_READ_TIMEOUT squid-5.9/errors/fi/ERR_READ_TIMEOUT --- squid-5.8/errors/fi/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_READ_TIMEOUT 2023-05-01 10:38:46.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Lukemisen aikakatkaisu

          +
          + +

          Järjestelmä palautti viestin:%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-5.8/errors/fi/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/fi/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/fi/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:38:47.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Failed to establish a secure connection to %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/fi/ERR_SHUTTING_DOWN squid-5.9/errors/fi/ERR_SHUTTING_DOWN --- squid-5.8/errors/fi/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_SHUTTING_DOWN 2023-05-01 10:38:47.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

          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-5.8/errors/fi/ERR_SOCKET_FAILURE squid-5.9/errors/fi/ERR_SOCKET_FAILURE --- squid-5.8/errors/fi/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_SOCKET_FAILURE 2023-05-01 10:38:47.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Sokettivirhe

          +
          + +

          Järjestelmä palautti viestin:%E

          + +

          Squid ei voinut luoda TCP-sokettia, oletettavasti valtavan kuorman vuoksi. Uusi hakupyyntösi.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_TOO_BIG squid-5.9/errors/fi/ERR_TOO_BIG --- squid-5.8/errors/fi/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_TOO_BIG 2023-05-01 10:38:47.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Pyyntö tai paluuvastaus on liian iso.

          +
          + +

          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-5.8/errors/fi/ERR_UNSUP_HTTPVERSION squid-5.9/errors/fi/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/fi/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_UNSUP_HTTPVERSION 2023-05-01 10:38:47.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Tätä HTTP versiota ei tueta

          +
          +
          + +
          +

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

          + +
          +

          Tätä HTTP versiota ei tueta

          +
          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_UNSUP_REQ squid-5.9/errors/fi/ERR_UNSUP_REQ --- squid-5.8/errors/fi/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_UNSUP_REQ 2023-05-01 10:38:47.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Hakupyynnon tyyppi ja yhteyskäytäntö ei tuettu

          +
          + +

          Squid ei tue kaikkia hakupyynnon tyyppejä kaikilla protokollilla. Et voi esimerkiksi käyttää POST-pyyntöä gopherilla.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_URN_RESOLVE squid-5.9/errors/fi/ERR_URN_RESOLVE --- squid-5.8/errors/fi/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_URN_RESOLVE 2023-05-01 10:38:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          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ää

          +
          + +

          Hei, älä odota liikaa URN:iltä kun kyseessä on %T :-)

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_WRITE_ERROR squid-5.9/errors/fi/ERR_WRITE_ERROR --- squid-5.8/errors/fi/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_WRITE_ERROR 2023-05-01 10:38:48.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Virhe kirjoitettaessa

          +
          + +

          Järjestelmä palautti viestin:%E

          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fi/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/fi/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/fi/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fi/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:38:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +VIRHE: Pyydettyä URL-osoitetta ei voitu hakea + + +
          +

          VIRHE

          +

          Pyydettyä URL-osoitetta ei voitu hakea

          +
          +
          + +
          +

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

          + +
          +

          Nollan pituinen vastaus

          +
          + +

          Haku ei tuonut Squidille mitään tietoa.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_ACCESS_DENIED squid-5.9/errors/fr/ERR_ACCESS_DENIED --- squid-5.8/errors/fr/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_ACCESS_DENIED 2023-05-01 10:38:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Accès interdit.

          +
          + +

          La configuration du contrôle d'accès, empêche votre requête d'être acceptée. Si vous pensez que c'est une erreur, contactez votre fournisseur d'accès.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/fr/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/fr/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:38:48.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Le temps de connexion de votre quota est dépassé.

          +
          + +

          Ce proxy utilise un quota qui limite le temps de connexion. Le crédit de votre quota est actuellement vide, mais il sera de nouveau crédité lorsque vous allez redémarrer le proxy.

          +

          Ces limites ont été fixées par le Fournisseur d'Accès Internet et agissent sur ce proxy. Si vous pensez que c'est une erreur, contactez le fournisseur d'accès.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_AGENT_CONFIGURE squid-5.9/errors/fr/ERR_AGENT_CONFIGURE --- squid-5.8/errors/fr/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_AGENT_CONFIGURE 2023-05-01 10:38:48.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Configuration du navigateur Web + + +
          +

          ERREUR

          +

          Configuration du navigateur Web

          +
          +
          + +
          +
          +

          Vous devez corriger la configuration de votre navigateur Web, pour qu'il soit utilisé dans ce réseau

          +
          + +

          Comment trouver ces réglages dans votre navigateur :

          + +
          +For Firefox browsers go to: +
            +
          • Outils -> Options -> Avancé -> Réseau -> Paramètres de Connexion
          • +
          • Vous devez indiquer dans la fenêtre du proxy HTTP, le nom du proxy %h et le port %b
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Outils -> Options Internet -> Connexion -> Paramètres LAN -> Proxy
          • +
          • Vous devez indiquer dans la fenêtre du proxy HTTP, le nom du proxy %h et le port %b
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Outils -> Préférences -> Avancé -> Réseau -> Serveur Proxy
          • +
          • Vous devez indiquer dans la fenêtre du proxy HTTP, le nom du proxy %h et le port %b
          • +
          +
          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_AGENT_WPAD squid-5.9/errors/fr/ERR_AGENT_WPAD --- squid-5.8/errors/fr/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_AGENT_WPAD 2023-05-01 10:38:49.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Configuration du navigateur Web + + +
          +

          ERREUR

          +

          Configuration du navigateur Web

          +
          +
          + +
          +
          +

          Vous devez corriger la configuration de votre navigateur Web, pour qu'il soit utilisé dans ce réseau

          +
          + +

          Comment trouver ces réglages dans votre navigateur :

          + +
          +For Firefox browsers go to: +
            +
          • Outils -> Options -> Avancé -> Réseau -> Paramètres de Connexion
          • +
          • Sélectionnez détection automatique dans les paramètres du proxy pour ce réseau
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Outils -> Options Internet -> Connexion -> Paramètres LAN -> Proxy
          • +
          • Sélectionnez le paramètre détection automatique
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Outils -> Préférences -> Avancé -> Réseau -> Serveur Proxy
          • +
          • Utilisez la sélection automatique pour configurer le proxy
          • +
          +
          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/fr/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/fr/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:38:49.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERREUR : accès au Cache Interdit + + +
          +

          ERREUR

          +

          Accès au cache interdit.

          +
          +
          + +
          +

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

          + +
          +

          Accès au cache interdit.

          +
          + +

          Désolé, vous n'êtes pas autorisé à demander la requête %U de ce cache tant que vous ne serez pas identifié.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/fr/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/fr/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:38:49.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERREUR : accès au Gestionnaire de Cache Interdit + + +
          +

          ERREUR

          +

          Accès au Gestionnaire de Cache Interdit.

          +
          +
          + +
          +

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

          + +
          +

          Accès au Gestionnaire de Cache Interdit.

          +
          + +

          Désolé, vous n'êtes pas autorisé à demander la requête %U au travers du gestionnaire de cache tant que vous ne serez pas identifié.

          + +

          S'il vous plait, contacter l'administrateur du proxy si vous avez des difficultés pour vous authentifier ou si vous êtes administrateur, lisez la documentation Squid sur l'interface du gestionnaire du cache, vérifiez aussi les fichiers logs du cache pour analyser en détails les messages d'erreurs.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_CANNOT_FORWARD squid-5.9/errors/fr/ERR_CANNOT_FORWARD --- squid-5.8/errors/fr/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_CANNOT_FORWARD 2023-05-01 10:38:49.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          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-5.8/errors/fr/ERR_CONFLICT_HOST squid-5.9/errors/fr/ERR_CONFLICT_HOST --- squid-5.8/errors/fr/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_CONFLICT_HOST 2023-05-01 10:38:49.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

          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-5.8/errors/fr/ERR_CONNECT_FAIL squid-5.9/errors/fr/ERR_CONNECT_FAIL --- squid-5.8/errors/fr/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_CONNECT_FAIL 2023-05-01 10:38:50.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          La connexion %I a échouée.

          +
          + +

          Le système a retourné : %E

          + +

          L'hôte distant ou le réseau sont peut-être défaillant. Veuillez renouveler votre requête.

          + +

          Votre administrateur proxy est %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_DIR_LISTING squid-5.9/errors/fr/ERR_DIR_LISTING --- squid-5.8/errors/fr/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_DIR_LISTING 2023-05-01 10:38:50.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Répertoire : %U + + +
          +

          Répertoire : %U/

          +
          +
          + +
          +

          Contenu du répertoire :

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Répertoire Parent (Répertoire Racine)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_DNS_FAIL squid-5.9/errors/fr/ERR_DNS_FAIL --- squid-5.8/errors/fr/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_DNS_FAIL 2023-05-01 10:38:50.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Impossible de déterminer l'adresse IP du nom d'hôte %H

          +
          + +

          Le serveur DNS a retourné :

          +
          +
          %z
          +
          + +

          Cela signifie que le proxy ne peut pas résoudre le nom d'hôte présent dans l'URL. Vérifier si l'adresse est correcte.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_ESI squid-5.9/errors/fr/ERR_ESI --- squid-5.8/errors/fr/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_ESI 2023-05-01 10:38:50.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Le traitement ESI a échoué.

          +
          + +

          Le processus ESI a répondu :

          +
          +
          %Z
          +
          + +

          Cela signifie que le substitut n'a pas été capable de traiter le modèle ESI. Veuillez reporter cette erreur au webmaster.

          + +

          Votre webmaster est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_FORWARDING_DENIED squid-5.9/errors/fr/ERR_FORWARDING_DENIED --- squid-5.8/errors/fr/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_FORWARDING_DENIED 2023-05-01 10:38:50.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Transmission interdite.

          +
          + +

          Ce proxy ne fera pas suivre votre requête, car il essaye de mettre en application une interaction. Le client %i est peut-être un cache mal configuré.

          + +

          Votre administrateur proxy est %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_FTP_DISABLED squid-5.9/errors/fr/ERR_FTP_DISABLED --- squid-5.8/errors/fr/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_FTP_DISABLED 2023-05-01 10:38:50.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          FTP est désactivé

          +
          + +

          Ce proxy ne prend pas en compte le protocole FTP.

          + +

          Votre administrateur proxy est %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_FTP_FAILURE squid-5.9/errors/fr/ERR_FTP_FAILURE --- squid-5.8/errors/fr/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_FTP_FAILURE 2023-05-01 10:38:51.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

          En essayant de charger l'URL : %U une erreur de protocole FTP est survenue.

          + +

          Squid a envoyé la commande FTP suivante :

          +
          +
          %f
          +
          + +

          Le serveur a répondu :

          +
          +
          %F
          +
          %g
          +
          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_FTP_FORBIDDEN squid-5.9/errors/fr/ERR_FTP_FORBIDDEN --- squid-5.8/errors/fr/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_FTP_FORBIDDEN 2023-05-01 10:38:51.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

          En essayant de charger l'URL : %U une erreur d'authentification a eu lieu lors de l'accès au serveur FTP.

          + +

          Squid a envoyé la commande FTP suivante :

          +
          +
          %f
          +
          + +

          Le serveur a répondu :

          +
          +
          %F
          +
          %g
          +
          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_FTP_NOT_FOUND squid-5.9/errors/fr/ERR_FTP_NOT_FOUND --- squid-5.8/errors/fr/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_FTP_NOT_FOUND 2023-05-01 10:38:51.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

          L'URL suivante n'a pas pu être chargée : %U

          + +

          Squid a envoyé la commande FTP suivante :

          +
          +
          %f
          +
          + +

          Le serveur a répondu :

          +
          +
          %F
          +
          %g
          +
          + +

          Cela pourrait être causé par une URL FTP qui contient un chemin absolut (ce qui n'est pas compatible avec la RFC 1738). Si tel est le cas, le fichier peut être disponible à l'adresse %B.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_FTP_PUT_CREATED squid-5.9/errors/fr/ERR_FTP_PUT_CREATED --- squid-5.8/errors/fr/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_FTP_PUT_CREATED 2023-05-01 10:38:51.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP avec PUT, l'envoi du fichier a réussi. + + +
          +

          Opération réussie

          +

          Le fichier a été créé

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_FTP_PUT_ERROR squid-5.9/errors/fr/ERR_FTP_PUT_ERROR --- squid-5.8/errors/fr/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_FTP_PUT_ERROR 2023-05-01 10:38:51.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERREUR : envoi FTP défectueux + + +
          +

          ERREUR

          +

          FTP avec PUT, échec lors de l'envoi du fichier

          +
          +
          + +
          +

          En essayant de charger l'URL : %U une erreur de protocole FTP est survenue.

          + +

          Squid a envoyé la commande FTP suivante :

          +
          +
          %f
          +
          + +

          Le serveur a répondu :

          +
          +
          %F
          +
          + +

          Cela signifie que le serveur FTP n'a pas les autorisations ou pas assez d'espace pour stocker ce fichier. Veuillez vérifier le chemin, les autorisations et l'espace disque puis essayez de nouveau.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_FTP_PUT_MODIFIED squid-5.9/errors/fr/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/fr/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_FTP_PUT_MODIFIED 2023-05-01 10:38:52.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP avec PUT, l'envoi du fichier a réussi. + + +
          +

          Opération réussie

          +

          Le fichier a été mis à jour

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_FTP_UNAVAILABLE squid-5.9/errors/fr/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/fr/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_FTP_UNAVAILABLE 2023-05-01 10:38:52.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

          Le serveur FTP est surchargé et ne permet pas d'accéder à l'URL : %U

          + +

          Squid a envoyé la commande FTP suivante :

          + +
          +
          %f
          +
          + +

          Le serveur a répondu :

          +
          +
          %F
          +
          %g
          +
          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_GATEWAY_FAILURE squid-5.9/errors/fr/ERR_GATEWAY_FAILURE --- squid-5.8/errors/fr/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_GATEWAY_FAILURE 2023-05-01 10:38:52.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Défaillance de la passerelle Proxy

          +
          + +

          Une défaillance interne non-récupérable ou un problème de configuration empêchent cette requête de s'achever.

          + +

          Ces limites ont été fixées par le Fournisseur d'Accès Internet et agissent sur ce proxy. Si vous pensez que c'est une erreur, contactez le fournisseur d'accès.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_ICAP_FAILURE squid-5.9/errors/fr/ERR_ICAP_FAILURE --- squid-5.8/errors/fr/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_ICAP_FAILURE 2023-05-01 10:38:52.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Erreur de protocole ICAP.

          +
          + +

          Le système a retourné : %E

          + +

          Cela signifie que certains aspects de la communication ICAP a échoués.

          + +

          Problèmes possibles :

          +
            +
          • Le serveur ICAP n'est pas joignable.

          • +
          • Une réponse illégale a été reçue par le serveur ICAP.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_INVALID_REQ squid-5.9/errors/fr/ERR_INVALID_REQ --- squid-5.8/errors/fr/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_INVALID_REQ 2023-05-01 10:38:52.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

          Requête invalide une erreur a été rencontrée en essayant de traiter la requête :

          + +
          +
          %R
          +
          + +

          Problèmes possibles :

          +
            +
          • Requête de la méthode non précisée ou inconnue.

          • +
          • L'URL n'est pas spécifiée

          • +
          • L'identifiant HTTP est absent pour (HTTP/1.0).

          • +
          • La requête est trop grande

          • +
          • Le champ "Content-Length" est absent, pour l'utilisation des requêtes avec POST ou PUT

          • +
          • Caractère illégal dans le nom d'hôte; Le caractère tiret bas n'est pas autorisé.

          • +
          • HTTP/1.1 Expect: cette fonction a besoin du logiciel HTTP/1.0.

          • +
          + +

          Votre administrateur proxy est %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_INVALID_RESP squid-5.9/errors/fr/ERR_INVALID_RESP --- squid-5.8/errors/fr/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_INVALID_RESP 2023-05-01 10:38:52.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

          Réponse invalide une erreur a été rencontrée en essayant de traiter la requête :

          + +
          +
          %R
          +
          + +

          La réponse HTTP reçu, qui a été envoyée par le serveur n'a pas pu être compris ou a été mal formulé. Veuillez contacter le responsable du site.

          + +

          Si nécessaire, votre administrateur proxy peut vous fournir plus de détails sur la nature exacte du problème.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_INVALID_URL squid-5.9/errors/fr/ERR_INVALID_URL --- squid-5.8/errors/fr/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_INVALID_URL 2023-05-01 10:38:53.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          URL invalide

          +
          + +

          Certains aspects de l'adresse URL est incorrect.

          + +

          Problèmes possibles :

          +
            +
          • Le protocole d'accès est absent ou incorrect (il doit être sous la forme http:// ou similaire)

          • +
          • Le nom d'hôte n'est pas spécifié

          • +
          • Les doubles espaces sont illégaux dans une adresse URL

          • +
          • Caractère illégal dans le nom d'hôte; Le caractère tiret bas n'est pas autorisé.

          • +
          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_LIFETIME_EXP squid-5.9/errors/fr/ERR_LIFETIME_EXP --- squid-5.8/errors/fr/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_LIFETIME_EXP 2023-05-01 10:38:53.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          La durée de vie de la connexion est dépassée

          +
          + +

          Squid a mis fin à cette requête car elle a excédé la durée de vie maximale.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_NO_RELAY squid-5.9/errors/fr/ERR_NO_RELAY --- squid-5.8/errors/fr/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_NO_RELAY 2023-05-01 10:38:53.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Aucun relais WAIS

          +
          + +

          Sur ce proxy il n'y a pas d'hôte définie pour le relais WAIS ! Adressez-vous à votre administrateur.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/fr/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/fr/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:38:53.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Aucun document valide n'a été trouvé dans le cache, de plus la directive only-if-cached a été spécifiée.

          +
          + +

          Vous avez émis une demande avec une directive de contrôle du cache only-if-cached. Le document n'a pas été trouvé dans le cache ou il nécessite une opération de vérification, qui est interdite par la directive only-if-cached.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/error-details.txt squid-5.9/errors/fr/error-details.txt --- squid-5.8/errors/fr/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/error-details.txt 2023-05-01 10:38:55.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/fr/ERR_PRECONDITION_FAILED squid-5.9/errors/fr/ERR_PRECONDITION_FAILED --- squid-5.8/errors/fr/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_PRECONDITION_FAILED 2023-05-01 10:38:53.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          La précondition a échouée.

          +
          + +

          Cela signifie :

          +
          +

          Au moins une précondition indiquée dans l'en-tête de la requête du client HTTP a échoué.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/fr/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/fr/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:38:53.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_READ_ERROR squid-5.9/errors/fr/ERR_READ_ERROR --- squid-5.8/errors/fr/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_READ_ERROR 2023-05-01 10:38:54.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Erreur de lecture

          +
          + +

          Le système a retourné : %E

          + +

          Lors de la lecture des informations sur le réseau une erreur est survenue. Veuillez renouveler votre requête.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_READ_TIMEOUT squid-5.9/errors/fr/ERR_READ_TIMEOUT --- squid-5.8/errors/fr/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_READ_TIMEOUT 2023-05-01 10:38:54.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Délai de lecture dépassé

          +
          + +

          Le système a retourné : %E

          + +

          Le délai a été dépassé lors de la lecture de données sur le réseau. Le réseau ou le serveur sont peut-être hors service ou surchargés. Merci de renouveler votre requête.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/fr/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/fr/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:38:54.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Il n'a pas été possible d'établir une connexion sécurisée avec %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Ce proxy et l'hôte distant n'ont pas pu négocier mutuellement une connexion sécurisée pour le traitement de votre requête. Il est possible que l'hôte distant ne supporte pas les connexions sécurisées, ou que le proxy n'est pas satisfait du certificat de sécurité de l'hôte distant.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_SHUTTING_DOWN squid-5.9/errors/fr/ERR_SHUTTING_DOWN --- squid-5.8/errors/fr/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_SHUTTING_DOWN 2023-05-01 10:38:54.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +

          Le proxy est arrêté temporairement, actuellement il est impossible de satisfaire votre requête. Veuillez renouveler votre requête ultérieurement.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_SOCKET_FAILURE squid-5.9/errors/fr/ERR_SOCKET_FAILURE --- squid-5.8/errors/fr/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_SOCKET_FAILURE 2023-05-01 10:38:54.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Erreur de socket

          +
          + +

          Le système a retourné : %E

          + +

          Squid n'est pas en mesure d'ouvrir le socket TCP, probablement due à une surcharge. Veuillez renouveler votre requête.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_TOO_BIG squid-5.9/errors/fr/ERR_TOO_BIG --- squid-5.8/errors/fr/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_TOO_BIG 2023-05-01 10:38:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          La requête ou la réponse est trop grande.

          +
          + +

          Si vous effectuez une requête avec POST ou PUT, l'élément que vous essayez d'envoyer est alors trop volumineux.

          +

          Si vous effectuez une requête avec GET, l'élément que vous essayez de télécharger est alors trop volumineux.

          +

          Ces limites ont été fixées par le Fournisseur d'Accès Internet et agissent sur ce proxy. Si vous pensez que c'est une erreur, contactez le fournisseur d'accès.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_UNSUP_HTTPVERSION squid-5.9/errors/fr/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/fr/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_UNSUP_HTTPVERSION 2023-05-01 10:38:55.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          Version HTTP non supportée

          +
          +
          + +
          +

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

          + +
          +

          Version HTTP non supportée

          +
          + +

          Ce Squid ne supporte pas la version HTTP que vous tentez d'utiliser.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_UNSUP_REQ squid-5.9/errors/fr/ERR_UNSUP_REQ --- squid-5.8/errors/fr/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_UNSUP_REQ 2023-05-01 10:38:55.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          La méthode de requête et le protocole ne sont pas pris en charge.

          +
          + +

          Squid ne prend pas en charge tous les types de requêtes par rapport à tous les protocoles d'accès. Vous ne pouvez pas par exemple utiliser une requête POST avec le protocole Gopher.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_URN_RESOLVE squid-5.9/errors/fr/ERR_URN_RESOLVE --- squid-5.8/errors/fr/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_URN_RESOLVE 2023-05-01 10:38:55.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : l'URN demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL n'a pas pu être chargée pour une demande URN

          +
          +
          + +
          +

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

          + +
          +

          Impossible de résoudre l'URN

          +
          + +

          Hé! Il ne faut pas vous attendre à grand-chose des URNs dans %T :)

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_WRITE_ERROR squid-5.9/errors/fr/ERR_WRITE_ERROR --- squid-5.8/errors/fr/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_WRITE_ERROR 2023-05-01 10:38:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Erreur d'écriture

          +
          + +

          Le système a retourné : %E

          + +

          Lors de l'écriture des informations sur le réseau une erreur est survenue. Veuillez renouveler votre requête.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/fr/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/fr/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/fr/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/fr/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:38:55.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : l'URL demandée n'a pas pu être chargée + + +
          +

          ERREUR

          +

          L'URL demandée n'a pas pu être trouvée

          +
          +
          + +
          +

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

          + +
          +

          Réponse de taille zéro

          +
          + +

          Squid n'a pas reçu toutes les données pour cette requête.

          + +

          Votre administrateur proxy est %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_ACCESS_DENIED squid-5.9/errors/he/ERR_ACCESS_DENIED --- squid-5.8/errors/he/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_ACCESS_DENIED 2023-05-01 10:38:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          הגישה נדחתה

          +
          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/he/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/he/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:38:56.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          Time Quota Exceeded.

          +
          + +

          בשרת הפרוקסי קיימת הגבלה למשך הזמן המותר לך להיות מחובר. כרגע המכסה שלך לזמן חיבור הסתימה, אבל המכסה תתמלא שוב כאשר יעבור פרק הזמן המוגדר.

          +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_AGENT_CONFIGURE squid-5.9/errors/he/ERR_AGENT_CONFIGURE --- squid-5.8/errors/he/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_AGENT_CONFIGURE 2023-05-01 10:38:56.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +הגדרת דפדפן האינטרנט + + +
          +

          שגיאה

          +

          הגדרת דפדפן האינטרנט

          +
          +
          + +
          +
          +

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

          +
          + +

          איך למצוא את ההגדרות האלה בדפדפן שלך:

          + +
          +For Firefox browsers go to: +
            +
          • כלים -> אפשרויות -> אפשרויות מתקדמות -> רשת -> הגדרות חיבור
          • +
          • בתיבת הפרוקסי של HTTP, הקלד את שם שרת הפרוקסי %h ואת הפורט %b
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • כלים -> אפשרויות אינטרנט -> חיבורים -> הגדרות LAN -> פרוקסי
          • +
          • בתיבת הפרוקסי של HTTP, הקלד את שם שרת הפרוקסי %h ואת הפורט %b
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • כלים -> העדפות -> הגדרות מתקדמות -> רשת -> שרתי פרוקסי
          • +
          • בתיבת הפרוקסי של HTTP, הקלד את שם שרת הפרוקסי %h ואת הפורט %b
          • +
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_AGENT_WPAD squid-5.9/errors/he/ERR_AGENT_WPAD --- squid-5.8/errors/he/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_AGENT_WPAD 2023-05-01 10:38:56.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +הגדרת דפדפן האינטרנט + + +
          +

          שגיאה

          +

          הגדרת דפדפן האינטרנט

          +
          +
          + +
          +
          +

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

          +
          + +

          איך למצוא את ההגדרות האלה בדפדפן שלך:

          + +
          +For Firefox browsers go to: +
            +
          • כלים -> אפשרויות -> אפשרויות מתקדמות -> רשת -> הגדרות חיבור
          • +
          • בחר "איתור הגדרות אוטומטי" עבר הרשת הזו
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • כלים -> אפשרויות אינטרנט -> חיבורים -> הגדרות LAN -> פרוקסי
          • +
          • בחר "איתור הגדרות אוטומטי"
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • כלים -> העדפות -> הגדרות מתקדמות -> רשת -> שרתי פרוקסי
          • +
          • בחר באיתור הגדרות אוטומטי עבור הגדרת הפרוקסי
          • +
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/he/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/he/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:38:56.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +שגיאה: גישה לשרת נדחית + + +
          +

          שגיאה

          +

          גישה ל-Cache נדחית

          +
          +
          + +
          +

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

          + +
          +

          גישה ל-Cache נדחית

          +
          + +

          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-5.8/errors/he/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/he/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/he/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:38:57.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +שגיאה: גישת מנהל לשרת נדחית + + +
          +

          שגיאה

          +

          גישת מנהל לשרת נדחית.

          +
          +
          + +
          +

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

          + +
          +

          גישת מנהל לשרת נדחית.

          +
          + +

          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-5.8/errors/he/ERR_CANNOT_FORWARD squid-5.9/errors/he/ERR_CANNOT_FORWARD --- squid-5.8/errors/he/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_CANNOT_FORWARD 2023-05-01 10:38:57.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

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

          + +

          Some possible problems are:

          +
            +
          • 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.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_CONFLICT_HOST squid-5.9/errors/he/ERR_CONFLICT_HOST --- squid-5.8/errors/he/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_CONFLICT_HOST 2023-05-01 10:38:57.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

          השגיאה הבאה אירעה בעת ניסיון לפענח את כתובת ה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:

          +
            +
          • 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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_CONNECT_FAIL squid-5.9/errors/he/ERR_CONNECT_FAIL --- squid-5.8/errors/he/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_CONNECT_FAIL 2023-05-01 10:38:57.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          החיבור ל %I נכשל.

          +
          + +

          הודעת המערכת: %E

          + +

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

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_DIR_LISTING squid-5.9/errors/he/ERR_DIR_LISTING --- squid-5.8/errors/he/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_DIR_LISTING 2023-05-01 10:38:57.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +תיקייה: %U + + +
          +

          תיקייה: %U/

          +
          +
          + +
          +

          תוכן התיקיה:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          תיקיית אב (תיקיית השורש)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_DNS_FAIL squid-5.9/errors/he/ERR_DNS_FAIL --- squid-5.8/errors/he/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_DNS_FAIL 2023-05-01 10:38:57.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          לא יכול למצוא כתובת IP בשביל %H

          +
          + +

          הודעת שרת השמות:

          +
          +
          %z
          +
          + +

          זה אומר ש השרת לא הצליח למצוא את השרת שצויין. בדוק את הכתובת.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_ESI squid-5.9/errors/he/ERR_ESI --- squid-5.8/errors/he/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_ESI 2023-05-01 10:38:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          עיבוד ESI נכשל.

          +
          + +

          The ESI processor returned:

          +
          +
          %Z
          +
          + +

          משמעות הדבר היא שלא היה ניתן לעבד את תבנית ESI. אנא דווח על שגיאה זו למנהל הרשת.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_FORWARDING_DENIED squid-5.9/errors/he/ERR_FORWARDING_DENIED --- squid-5.8/errors/he/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_FORWARDING_DENIED 2023-05-01 10:38:58.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          העברה נדחית.

          +
          + +

          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.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_FTP_DISABLED squid-5.9/errors/he/ERR_FTP_DISABLED --- squid-5.8/errors/he/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_FTP_DISABLED 2023-05-01 10:38:58.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          FTP מבוטל

          +
          + +

          שרת זה אינו תומך ב-FTP.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_FTP_FAILURE squid-5.9/errors/he/ERR_FTP_FAILURE --- squid-5.8/errors/he/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_FTP_FAILURE 2023-05-01 10:38:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

          קרתה שגיאת פרוטוקול FTP כאשר בוצע ניסיון לגשת אל הכתובת: %U

          + +

          שרת ה Squid שלח את פקודת ה-FTP הבאה:

          +
          +
          %f
          +
          + +

          תגובת השרת היא:

          +
          +
          %F
          +
          %g
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_FTP_FORBIDDEN squid-5.9/errors/he/ERR_FTP_FORBIDDEN --- squid-5.8/errors/he/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_FTP_FORBIDDEN 2023-05-01 10:38:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

          שגיאה בזיהוי משתמש FTP כאשר בוצע ניסיון לגשת אל הכתובת: %U

          + +

          שרת ה Squid שלח את פקודת ה-FTP הבאה:

          +
          +
          %f
          +
          + +

          תגובת השרת היא:

          +
          +
          %F
          +
          %g
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_FTP_NOT_FOUND squid-5.9/errors/he/ERR_FTP_NOT_FOUND --- squid-5.8/errors/he/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_FTP_NOT_FOUND 2023-05-01 10:38:58.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

          לא ניתן לגשת אל הכתובת: %U

          + +

          שרת ה Squid שלח את פקודת ה-FTP הבאה:

          +
          +
          %f
          +
          + +

          תגובת השרת היא:

          +
          +
          %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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_FTP_PUT_CREATED squid-5.9/errors/he/ERR_FTP_PUT_CREATED --- squid-5.8/errors/he/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_FTP_PUT_CREATED 2023-05-01 10:38:59.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          הפעולה עברה בהצלחה

          +

          הקובץ נוצר

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_FTP_PUT_ERROR squid-5.9/errors/he/ERR_FTP_PUT_ERROR --- squid-5.8/errors/he/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_FTP_PUT_ERROR 2023-05-01 10:38:59.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +שגיאה: העלאת קובץ ל-FTP נכשלה + + +
          +

          שגיאה

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          קרתה שגיאת פרוטוקול FTP כאשר בוצע ניסיון לגשת אל הכתובת: %U

          + +

          שרת ה Squid שלח את פקודת ה-FTP הבאה:

          +
          +
          %f
          +
          + +

          תגובת השרת היא:

          +
          +
          %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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_FTP_PUT_MODIFIED squid-5.9/errors/he/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/he/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_FTP_PUT_MODIFIED 2023-05-01 10:38:59.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          הפעולה עברה בהצלחה

          +

          הקובץ עודכן

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_FTP_UNAVAILABLE squid-5.9/errors/he/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/he/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_FTP_UNAVAILABLE 2023-05-01 10:38:59.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

          שרת ה-FTP היה עסוק מדי, כאשר ניסיתי לגשת אל הכתובת: %U

          + +

          שרת ה Squid שלח את פקודת ה-FTP הבאה:

          + +
          +
          %f
          +
          + +

          תגובת השרת היא:

          +
          +
          %F
          +
          %g
          +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_GATEWAY_FAILURE squid-5.9/errors/he/ERR_GATEWAY_FAILURE --- squid-5.8/errors/he/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_GATEWAY_FAILURE 2023-05-01 10:38:59.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          Gateway Proxy Failure

          +
          + +

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

          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_ICAP_FAILURE squid-5.9/errors/he/ERR_ICAP_FAILURE --- squid-5.8/errors/he/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_ICAP_FAILURE 2023-05-01 10:39:00.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          שגיאה בפרוטוקול ICAP.

          +
          + +

          הודעת המערכת: %E

          + +

          משמעות הדבר היא כי היבט כלשהו של התקשורת ICAP נכשל.

          + +

          Some possible problems are:

          +
            +
          • שרת ה ICAP לא נגיש.

          • +
          • תגובה בלתי חוקית התקבלה משרת ה ICAP.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_INVALID_REQ squid-5.9/errors/he/ERR_INVALID_REQ --- squid-5.8/errors/he/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_INVALID_REQ 2023-05-01 10:39:00.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

          בקשה לא חוקית אירעה שגיאה בעת ביצוע הבקשה:

          + +
          +
          %R
          +
          + +

          Some possible problems are:

          +
            +
          • סוג בקשה לא ידוע או חסר

          • +
          • כתובת URL חסרה.

          • +
          • Missing HTTP Identifier (HTTP/1.0).

          • +
          • הבקשה גדולה מידי.

          • +
          • חסר Content-Length בשביל בקשות POST או PUT

          • +
          • תווים לא חוקיים בשם השרת; קווים תחתונים אסורים

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

          • +
          + +

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

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_INVALID_RESP squid-5.9/errors/he/ERR_INVALID_RESP --- squid-5.8/errors/he/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_INVALID_RESP 2023-05-01 10:39:00.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

          תגובה לא חוקית אירעה שגיאה בעת ביצוע הבקשה:

          + +
          +
          %R
          +
          + +

          התגובת ה 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-5.8/errors/he/ERR_INVALID_URL squid-5.9/errors/he/ERR_INVALID_URL --- squid-5.8/errors/he/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_INVALID_URL 2023-05-01 10:39:00.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          כתובת URL שגויה

          +
          + +

          Some aspect of the requested URL is incorrect.

          + +

          Some possible problems are:

          +
            +
          • Missing or incorrect access protocol (should be http:// or similar)

          • +
          • חסר שם שרת

          • +
          • בריחה כפולה שגויה בנתיב

          • +
          • תווים לא חוקיים בשם השרת; קווים תחתונים אסורים

          • +
          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_LIFETIME_EXP squid-5.9/errors/he/ERR_LIFETIME_EXP --- squid-5.8/errors/he/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_LIFETIME_EXP 2023-05-01 10:39:00.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          תוקף החיבור פג

          +
          + +

          השרת ביטל את הבקשה בגלל שהיא עברה את אורך החיים המאושר ליצירת חיבור.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_NO_RELAY squid-5.9/errors/he/ERR_NO_RELAY --- squid-5.8/errors/he/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_NO_RELAY 2023-05-01 10:39:00.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          אין שרת WAIS

          +
          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/he/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/he/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:39:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

          השגיאה הבאה אירעה בעת ניסיון לפענח את כתובת ה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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/error-details.txt squid-5.9/errors/he/error-details.txt --- squid-5.8/errors/he/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/error-details.txt 2023-05-01 10:39:03.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/he/ERR_PRECONDITION_FAILED squid-5.9/errors/he/ERR_PRECONDITION_FAILED --- squid-5.8/errors/he/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_PRECONDITION_FAILED 2023-05-01 10:39:01.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          ביצוע תנאי מקדים נכשל.

          +
          + +

          מידע מפורט:

          +
          +

          לפחות תנאי מוקדם אחד שצויין על ידי לקוח ה HTTP לא מתקיים

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/he/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/he/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:39:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_READ_ERROR squid-5.9/errors/he/ERR_READ_ERROR --- squid-5.8/errors/he/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_READ_ERROR 2023-05-01 10:39:01.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          שגיאה בקריאה

          +
          + +

          הודעת המערכת: %E

          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_READ_TIMEOUT squid-5.9/errors/he/ERR_READ_TIMEOUT --- squid-5.8/errors/he/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_READ_TIMEOUT 2023-05-01 10:39:01.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          הקריאה אורכת יותר מידי זמן

          +
          + +

          הודעת המערכת: %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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/he/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/he/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:39:02.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          אירעה שגיאה בניסיון ליצור חיבור מאובטח ל %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_SHUTTING_DOWN squid-5.9/errors/he/ERR_SHUTTING_DOWN --- squid-5.8/errors/he/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_SHUTTING_DOWN 2023-05-01 10:39:02.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

          השגיאה הבאה אירעה בעת ניסיון לפענח את כתובת ה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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_SOCKET_FAILURE squid-5.9/errors/he/ERR_SOCKET_FAILURE --- squid-5.8/errors/he/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_SOCKET_FAILURE 2023-05-01 10:39:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          שגיאת חיבור

          +
          + +

          הודעת המערכת: %E

          + +

          שרת ה Squid לא הצליח ליצור חיבור TCP, כנראה בגלל עומס יתר. אנא נסה שוב.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_TOO_BIG squid-5.9/errors/he/ERR_TOO_BIG --- squid-5.8/errors/he/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_TOO_BIG 2023-05-01 10:39:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          הבקשה או התשובה גדולים מדי.

          +
          + +

          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.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_UNSUP_HTTPVERSION squid-5.9/errors/he/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/he/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_UNSUP_HTTPVERSION 2023-05-01 10:39:02.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          גרסת HTTP לא נתמכת

          +
          +
          + +
          +

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

          + +
          +

          גרסת HTTP לא נתמכת

          +
          + +

          Squid לא מאפשר להשתמש בגרסת ה HTTP שאתה מנסה להשתמש.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_UNSUP_REQ squid-5.9/errors/he/ERR_UNSUP_REQ --- squid-5.8/errors/he/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_UNSUP_REQ 2023-05-01 10:39:02.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          שיטת בקשה ופרוטוקול לא נתמכים

          +
          + +

          שרת ה Squid אינו תומך בכל שיטות הבקשה לכל הפרוטוקולים. לדוגמא אינך יכול לשלוח בקשת POST ב-Gopher.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_URN_RESOLVE squid-5.9/errors/he/ERR_URN_RESOLVE --- squid-5.8/errors/he/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_URN_RESOLVE 2023-05-01 10:39:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          שגיאה

          +

          לא ניתן לאחזר את כתובת ה URL מתוך כתובת ה URN

          +
          +
          + +
          +

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

          + +
          +

          Cannot Resolve URN

          +
          + +

          אל תצפה ליותר מדי מ-URN על %T :)

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_WRITE_ERROR squid-5.9/errors/he/ERR_WRITE_ERROR --- squid-5.8/errors/he/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_WRITE_ERROR 2023-05-01 10:39:03.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          שגיאת כתיבה

          +
          + +

          הודעת המערכת: %E

          + +

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

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/he/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/he/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/he/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/he/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:39:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +שגיאה: הכתובת ה URL מבוקשת לא נגישה + + +
          +

          שגיאה

          +

          לא ניתן לגשת אל הכתובת המבוקשת

          +
          +
          + +
          +

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

          + +
          +

          Zero Sized Reply

          +
          + +

          השרת לא קיבל כל תשובה לבקשה זו.

          + +

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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_ACCESS_DENIED squid-5.9/errors/hu/ERR_ACCESS_DENIED --- squid-5.8/errors/hu/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_ACCESS_DENIED 2023-05-01 10:39:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Hozzáférés megtagadva

          +
          + +

          Jelen pillanatban nincs jogosultsága a kért tartalom eléréséhez. A jogosultságok kiosztásával kapcsolatban a szerver üzemeltetőjét keresheti meg.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/hu/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/hu/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:39:03.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Az időkvóta elfogyott

          +
          + +

          A proxyszerver kvóták használatával korlátozza a gépek hálózati idejét. A szerveren beállított időkeret elfogyott, és az csak a rendszergazda által megadott időintervallum kezdetekor lesz ismét felhasználható.

          +

          Ezeket a korlátozásokat a proxyszervert üzemeltető internetszolgáltató szabályozza. Bővebb információért vegye fel a kapcsolatot a szolgáltatóval.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_AGENT_CONFIGURE squid-5.9/errors/hu/ERR_AGENT_CONFIGURE --- squid-5.8/errors/hu/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_AGENT_CONFIGURE 2023-05-01 10:39:04.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +A böngésző konfigurálása + + +
          +

          HIBA

          +

          A böngésző konfigurálása

          +
          +
          + +
          +
          +

          A hálózat használatához módosítania kell a böngésző beállításait.

          +
          + +

          Ezeket a beállításokat az alábbi menüpontokon keresztül találhatja meg:

          + +
          +For Firefox browsers go to: +
            +
          • Eszközök -> Beállítások -> Fejlett -> Hálózat -> Kapcsolatbeállítások
          • +
          • A HTTP proxy mezőben adja meg a proxy nevét (%h) és portszámát (%b).
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Eszközök -> Internetbeállítások -> Kapcsolat -> Helyi hálózat beállításai -> Proxy
          • +
          • A HTTP proxy mezőben adja meg a proxy nevét (%h) és portszámát (%b).
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Eszközök -> Beállítások -> Fejlett -> Hálózat -> Proxyszerverek
          • +
          • A HTTP proxy mezőben adja meg a proxy nevét (%h) és portszámát (%b).
          • +
          +
          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_AGENT_WPAD squid-5.9/errors/hu/ERR_AGENT_WPAD --- squid-5.8/errors/hu/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_AGENT_WPAD 2023-05-01 10:39:04.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +A böngésző konfigurálása + + +
          +

          HIBA

          +

          A böngésző konfigurálása

          +
          +
          + +
          +
          +

          A hálózat használatához módosítania kell a böngésző beállításait.

          +
          + +

          Ezeket a beállításokat az alábbi menüpontokon keresztül találhatja meg:

          + +
          +For Firefox browsers go to: +
            +
          • Eszközök -> Beállítások -> Fejlett -> Hálózat -> Kapcsolatbeállítások
          • +
          • Válassza ki a „Proxybeállítások automatikus felismerése ehhez a hálózathoz” jelölőnégyzetet
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Eszközök -> Internetbeállítások -> Kapcsolat -> Helyi hálózat beállításai -> Proxy
          • +
          • Válassza ki az „Automatikus felismerés” opciót
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Eszközök -> Beállítások -> Fejlett -> Hálózat -> Proxyszerverek
          • +
          • Válassza ki az "Automatikus proxybeállítás használata" opciót
          • +
          +
          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/hu/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/hu/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:39:04.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +HIBA: Nincs jogosultsága a proxyszerver eléréséhez + + +
          +

          HIBA

          +

          A proxyszerver használatához bejelentkezés szükséges

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          A proxyszerver használatához bejelentkezés szükséges

          +
          + +

          A(z) %U URL eléréséhez be kell jelentkeznie a proxyszerverre.

          + +

          Kérem, lépjen kapcsolatba a szerver üzemeltetőjével, ha nem tud bejelentkezni.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/hu/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/hu/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:39:04.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +HIBA: Adminisztrátori hozzáférés megtagadva + + +
          +

          HIBA

          +

          Adminisztrátori hozzáférés megtagadva

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Adminisztrátori hozzáférés megtagadva

          +
          + +

          A(z) %U URL gyorsítótár-kezelői eléréséhez be kell jelentkeznie a proxyszerverre.

          + +

          Kérem, lépjen kapcsolatba a szerver üzemeltetőjével, ha nem tud bejelentkezni. Ha Ön a szerver adminisztrátora, akkor olvassa el a Squid dokumentációját a gyorsítótár-kezelő interfész használatáról. A hiba pontos okáról a Squid logfájljából tájékozódhat.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_CANNOT_FORWARD squid-5.9/errors/hu/ERR_CANNOT_FORWARD --- squid-5.8/errors/hu/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_CANNOT_FORWARD 2023-05-01 10:39:04.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          A kérés jelenleg nem továbbítható

          +
          + +

          A kérés nem továbbítható a forrásszerver vagy valamelyik parent cache felé.

          + +

          A probléma lehetséges okai:

          +
            +
          • Az URL-ben szereplő szerver hálózati hiba miatt nem érhető el.
          • +
          • Egyetlen parent cache sem érhető el jelenleg.
          • +
          • A rendszergazda nem engedélyezte a proxyszerveren más szerverek közvetlen elérését.
          • +
          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_CONFLICT_HOST squid-5.9/errors/hu/ERR_CONFLICT_HOST --- squid-5.8/errors/hu/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_CONFLICT_HOST 2023-05-01 10:39:05.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +
          Ütköző URI-hosztok
          +
          + +

          Ez a hiba arra utal, hogy az elérni kívánt domainnév nem érhető el az Ön számítógépéről.

          + +

          A probléma lehetséges okai:

          +
            +
          • Előfordulhat, hogy a domain elköltözött. Kérem, küldje el a kérést újra.
          • +
          • Előfordulhat, hogy az elérni kívánt weboldal megköveteli a helyi, országspecifikus verzió használatát. Az internetszolgáltató DNS-szervereinek használata megoldja a problémát.
          • +
          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_CONNECT_FAIL squid-5.9/errors/hu/ERR_CONNECT_FAIL --- squid-5.8/errors/hu/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_CONNECT_FAIL 2023-05-01 10:39:05.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Nem sikerült kapcsolódni a(z) %I szerverhez

          +
          + +

          A rendszer által visszaadott hibaüzenet: %E

          + +

          A hiba legvalószínűbb oka, hogy a távoli szerver vagy hálózat épp nem elérhető. Kérem, próbálja meg elérni a szervert később.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_DIR_LISTING squid-5.9/errors/hu/ERR_DIR_LISTING --- squid-5.8/errors/hu/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_DIR_LISTING 2023-05-01 10:39:05.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Könyvtár: %U + + +
          +

          Könyvtár: %U/

          +
          +
          + +
          +

          A könyvtár tartalma:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Szülőkönyvtár (Gyökérkönyvtár)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_DNS_FAIL squid-5.9/errors/hu/ERR_DNS_FAIL --- squid-5.8/errors/hu/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_DNS_FAIL 2023-05-01 10:39:05.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          A(z) %H DNS-névhez tartozó IP-cím nem oldható fel

          +
          + +

          A DNS-szerver válasza:

          +
          +
          %z
          +
          + +

          A proxyszerver nem tudta feloldani az URL-ben szereplő hosztnevet. Kérem, ellenőrizze, hogy a cím helyes-e.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_ESI squid-5.9/errors/hu/ERR_ESI --- squid-5.8/errors/hu/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_ESI 2023-05-01 10:39:05.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Az ESI feldolgozás nem sikerült

          +
          + +

          Az ESI feldolgozó által visszaadott üzenet:

          +
          +
          %Z
          +
          + +

          Ez a hiba arra utal, hogy a helyettesítő nem tudta feldolgozni az ESI-sablont. Kérem, jelezze a hibát a szerver üzemeltetőjének.

          + +

          A webszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_FORWARDING_DENIED squid-5.9/errors/hu/ERR_FORWARDING_DENIED --- squid-5.8/errors/hu/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_FORWARDING_DENIED 2023-05-01 10:39:05.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          A kérés továbbítása tiltott

          +
          + +

          A kérés nem továbbítható, mivel az egy testvéri kapcsolatot eredményezne. A kliens (%i) valószínűleg egy másik proxyszerver, ami hibásan van konfigurálva.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_FTP_DISABLED squid-5.9/errors/hu/ERR_FTP_DISABLED --- squid-5.8/errors/hu/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_FTP_DISABLED 2023-05-01 10:39:06.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Az FTP protokoll használata nem engedélyezett

          +
          + +

          A proxyszerver nem támogatja az FTP-protokoll használatát.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_FTP_FAILURE squid-5.9/errors/hu/ERR_FTP_FAILURE --- squid-5.8/errors/hu/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_FTP_FAILURE 2023-05-01 10:39:06.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Protokollhiba történt a(z) %U URL betöltése közben.

          + +

          A proxyszerver által küldött FTP-parancs:

          +
          +
          %f
          +
          + +

          A távoli szerver válasza:

          +
          +
          %F
          +
          %g
          +
          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_FTP_FORBIDDEN squid-5.9/errors/hu/ERR_FTP_FORBIDDEN --- squid-5.8/errors/hu/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_FTP_FORBIDDEN 2023-05-01 10:39:06.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Authentikációs hiba történt a(z) %U URL betöltése közben.

          + +

          A proxyszerver által küldött FTP-parancs:

          +
          +
          %f
          +
          + +

          A távoli szerver válasza:

          +
          +
          %F
          +
          %g
          +
          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_FTP_NOT_FOUND squid-5.9/errors/hu/ERR_FTP_NOT_FOUND --- squid-5.8/errors/hu/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_FTP_NOT_FOUND 2023-05-01 10:39:06.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          A(z) %U URL nem tölthető be.

          + +

          A proxyszerver által küldött FTP-parancs:

          +
          +
          %f
          +
          + +

          A távoli szerver válasza:

          +
          +
          %F
          +
          %g
          +
          + +

          A hibát abszolút elérési útvonal használata okozhatja, ami nem felel meg az RFC 1738 szabványnak. Ha valóban ez a hiba forrása, akkor próbálja meg elérni a fájlt itt: %B.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_FTP_PUT_CREATED squid-5.9/errors/hu/ERR_FTP_PUT_CREATED --- squid-5.8/errors/hu/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_FTP_PUT_CREATED 2023-05-01 10:39:06.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +Sikeres PUT művelet + + +
          +

          Sikeres művelet

          +

          A fájl létrehozása sikeresen megtörtént

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_FTP_PUT_ERROR squid-5.9/errors/hu/ERR_FTP_PUT_ERROR --- squid-5.8/errors/hu/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_FTP_PUT_ERROR 2023-05-01 10:39:06.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +HIBA: Sikertelen feltöltés + + +
          +

          HIBA

          +

          Sikertelen PUT művelet

          +
          +
          + +
          +

          Protokollhiba történt a(z) %U URL betöltése közben.

          + +

          A proxyszerver által küldött FTP-parancs:

          +
          +
          %f
          +
          + +

          A távoli szerver válasza:

          +
          +
          %F
          +
          + +

          A hibát az okozhatja, hogy az FTP-szerveren elfogyott a szabad hely vagy jogosultság hiányában a fájl nem írható a háttértárolóra. Kérem, ellenőrizze a jogosultságokat és a szerveren rendelkezésre álló szabad tárkapacitás mennyiségét, majd ismételje meg a műveletet.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_FTP_PUT_MODIFIED squid-5.9/errors/hu/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/hu/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_FTP_PUT_MODIFIED 2023-05-01 10:39:07.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +Sikeres PUT művelet + + +
          +

          Sikeres művelet

          +

          A fájl frissítése sikeresen megtörtént

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_FTP_UNAVAILABLE squid-5.9/errors/hu/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/hu/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_FTP_UNAVAILABLE 2023-05-01 10:39:07.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Az FTP-szerver túlterheltség miatt nem tudta kiszolgálni a(z) %U kérést.

          + +

          A proxyszerver által küldött FTP-parancs:

          + +
          +
          %f
          +
          + +

          A távoli szerver válasza:

          +
          +
          %F
          +
          %g
          +
          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_GATEWAY_FAILURE squid-5.9/errors/hu/ERR_GATEWAY_FAILURE --- squid-5.8/errors/hu/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_GATEWAY_FAILURE 2023-05-01 10:39:07.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Átjáróhiba

          +
          + +

          Egy belső hiba vagy konfigurációs probléma miatt a kérés nem dolgozható fel.

          + +

          Ezeket a korlátozásokat a proxyszervert üzemeltető internetszolgáltató szabályozza. Bővebb információért vegye fel a kapcsolatot a szolgáltatóval.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_ICAP_FAILURE squid-5.9/errors/hu/ERR_ICAP_FAILURE --- squid-5.8/errors/hu/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_ICAP_FAILURE 2023-05-01 10:39:07.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          ICAP protokollhiba

          +
          + +

          A rendszer által visszaadott hibaüzenet: %E

          + +

          Az ICAP kommunikáció során hiba lépett fel.

          + +

          A probléma lehetséges okai:

          +
            +
          • Az ICAP szerver nem elérhető

          • +
          • Az ICAP szerver érvénytelen választ küldött

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_INVALID_REQ squid-5.9/errors/hu/ERR_INVALID_REQ --- squid-5.8/errors/hu/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_INVALID_REQ 2023-05-01 10:39:07.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Érvénytelen kérés - hiba történt a kérés feldolgozása közben:

          + +
          +
          %R
          +
          + +

          A probléma lehetséges okai:

          +
            +
          • A kérés típusa nincs megadva vagy hibás formátumú

          • +
          • Hiányzó URL

          • +
          • Hiányzó HTTP-azonosító (HTTP/1.0)

          • +
          • A kérés mérete túllépte a szerveren beállított limitet

          • +
          • Hiányzó „Content-Length” fejléc a POST vagy PUT kérésben

          • +
          • Érvénytelen karakter a hosztnévben: a „_” karakter használata nem engedélyezett

          • +
          • A kérésben szereplő Expect: fejléc nem támogatott a HTTP/1.0 protokollban.

          • +
          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_INVALID_RESP squid-5.9/errors/hu/ERR_INVALID_RESP --- squid-5.8/errors/hu/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_INVALID_RESP 2023-05-01 10:39:08.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Érvénytelen válasz - hiba történt a kérés feldolgozása közben:

          + +
          +
          %R
          +
          + +

          A távoli szerver által küldött HTTP-válasz megsérült vagy értelmezhetetlen. Kérem, jelezze a hibát a szerver üzemeltetőjének.

          + +

          Forduljon a proxyszerver üzemeltetőjéhez, ha többet szeretne megtudni a problémáról.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_INVALID_URL squid-5.9/errors/hu/ERR_INVALID_URL --- squid-5.8/errors/hu/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_INVALID_URL 2023-05-01 10:39:08.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Érvénytelen URL

          +
          + +

          Az URL hibás formátumú.

          + +

          A probléma lehetséges okai:

          +
            +
          • Az elérési protokoll (pl. http://) nincs megadva vagy hibás formátumú

          • +
          • Hiányzó hosztnév

          • +
          • Érvénytelen double-escape az URL-Path-ban

          • +
          • Érvénytelen karakter a hosztnévben: a „_” karakter használata nem engedélyezett

          • +
          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_LIFETIME_EXP squid-5.9/errors/hu/ERR_LIFETIME_EXP --- squid-5.8/errors/hu/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_LIFETIME_EXP 2023-05-01 10:39:08.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          A kapcsolat élettartama lejárt

          +
          + +

          A kapcsolat élettartama lejárt, ezért a proxyszerver bontotta a kapcsolatot.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_NO_RELAY squid-5.9/errors/hu/ERR_NO_RELAY --- squid-5.8/errors/hu/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_NO_RELAY 2023-05-01 10:39:08.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Hiányzó WAIS továbbító

          +
          + +

          A proxyszerveren nincs beállítva WAIS továbbító. Kérem, jelezze a problémát a rendszergazdának.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/hu/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/hu/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:39:08.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Az only-if-cached direktíva szerepel a kérésben, azonban a kért tartalom nem található meg a gyorsítótárban.

          +
          + +

          A böngésző által küldött kérés tartalmazza az only-if-cached direktívát, de a kért tartalom nem szerepel a gyorsítótárban. A tartalom ismételt letöltésére lenne szükség, ezt azonban tiltja az only-if-cached direktíva.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/error-details.txt squid-5.9/errors/hu/error-details.txt --- squid-5.8/errors/hu/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/error-details.txt 2023-05-01 10:39:11.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/hu/ERR_PRECONDITION_FAILED squid-5.9/errors/hu/ERR_PRECONDITION_FAILED --- squid-5.8/errors/hu/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_PRECONDITION_FAILED 2023-05-01 10:39:08.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Egy előfeltétel nem teljesült

          +
          + +

          A hiba lehetséges okai:

          +
          +

          A HTTP-kérésben szereplő előfeltételek nem teljesíthetők.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/hu/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/hu/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:39:09.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_READ_ERROR squid-5.9/errors/hu/ERR_READ_ERROR --- squid-5.8/errors/hu/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_READ_ERROR 2023-05-01 10:39:09.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Fogadási hiba

          +
          + +

          A rendszer által visszaadott hibaüzenet: %E

          + +

          Hálózati hiba történt az adatok fogadása közben, kérem, ismételje meg a műveletet.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_READ_TIMEOUT squid-5.9/errors/hu/ERR_READ_TIMEOUT --- squid-5.8/errors/hu/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_READ_TIMEOUT 2023-05-01 10:39:09.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Időtúllépés történt az adatok fogadása közben

          +
          + +

          A rendszer által visszaadott hibaüzenet: %E

          + +

          Időtúllépés történt az adatok fogadása közben. A távoli szerver vagy hálózat nem érhető el vagy túl van terhelve, kérem, próbálja újra később.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/hu/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/hu/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:39:09.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Nem sikerült a titkosított kapcsolat kiépítése a(z) %I szerverrel

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Nem sikerült kiépíteni a titkosított kapcsolatot a proxyszerver és a távoli kiszolgáló között. Lehet, hogy a távoli szerver nem támogatja a titkosított kapcsolatokat vagy olyan protokollt használ, ami a proxyszerveren nem engedélyezett.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_SHUTTING_DOWN squid-5.9/errors/hu/ERR_SHUTTING_DOWN --- squid-5.8/errors/hu/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_SHUTTING_DOWN 2023-05-01 10:39:09.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +

          A proxyszerver leállítás alatt van, így jelen pillanatban nem tudja kiszolgálni a kérést. Kérem, próbálja újra később.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_SOCKET_FAILURE squid-5.9/errors/hu/ERR_SOCKET_FAILURE --- squid-5.8/errors/hu/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_SOCKET_FAILURE 2023-05-01 10:39:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          A socket nem hozható létre

          +
          + +

          A rendszer által visszaadott hibaüzenet: %E

          + +

          A proxyszerver nem tudott új TCP socketet nyitni, vélhetően a magas terhelés miatt. Kérem, ismételje meg a kérést később.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_TOO_BIG squid-5.9/errors/hu/ERR_TOO_BIG --- squid-5.8/errors/hu/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_TOO_BIG 2023-05-01 10:39:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          A kérés vagy a válasz mérete meghaladja a szerveren beállított limitet.

          +
          + +

          POST vagy PUT kérés esetén valószínűleg túl nagy a feltölteni kívánt fájl mérete

          +

          GET kérés esetén a letölteni próbált fájl mérete meghaladja a megengedett maximumot

          +

          Ezeket a korlátozásokat a proxyszervert üzemeltető internetszolgáltató szabályozza. Bővebb információért vegye fel a kapcsolatot a szolgáltatóval.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_UNSUP_HTTPVERSION squid-5.9/errors/hu/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/hu/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_UNSUP_HTTPVERSION 2023-05-01 10:39:10.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Nem támogatott HTTP-verzió

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Nem támogatott HTTP-verzió

          +
          + +

          A proxyszerver nem támogatja a kérésben szereplő HTTP-verziót.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_UNSUP_REQ squid-5.9/errors/hu/ERR_UNSUP_REQ --- squid-5.8/errors/hu/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_UNSUP_REQ 2023-05-01 10:39:10.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Nem támogatott kéréstípus vagy protokoll

          +
          + +

          A proxyszerver nem támogat minden létező kéréstípus és protokoll kombinációt, így pl. nem lehet POST kéréstípust használni egy Gopher kérésben.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_URN_RESOLVE squid-5.9/errors/hu/ERR_URN_RESOLVE --- squid-5.8/errors/hu/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_URN_RESOLVE 2023-05-01 10:39:10.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HIBA: A kért URN nem tölthető be + + +
          +

          HIBA

          +

          Az URN-hez tartozó URL nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URN betöltése közben:

          + +
          +

          Az URN nem oldható fel

          +
          + +

          Ne várjon túl sokat a %T-n lévő URN-ektől! :)

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_WRITE_ERROR squid-5.9/errors/hu/ERR_WRITE_ERROR --- squid-5.8/errors/hu/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_WRITE_ERROR 2023-05-01 10:39:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Küldési hiba

          +
          + +

          A rendszer által visszaadott hibaüzenet: %E

          + +

          Hálózati hiba történt az adatok küldése közben, kérem, ismételje meg a műveletet.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hu/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/hu/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/hu/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hu/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:39:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HIBA: Az oldal nem tölthető be + + +
          +

          HIBA

          +

          Az oldal nem tölthető be

          +
          +
          + +
          +

          Hiba történt a(z) %U URL betöltése közben:

          + +
          +

          Üres válasz

          +
          + +

          A proxyszerver üres választ kapott a kérésre.

          + +

          A proxyszerver üzemeltetőjének e-mail címe: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_ACCESS_DENIED squid-5.9/errors/hy/ERR_ACCESS_DENIED --- squid-5.8/errors/hy/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_ACCESS_DENIED 2023-05-01 10:39:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Մուտքն արգելված է.

          +
          + +

          Մուտքի կառավարման պարամետրերը թույլ չեն տալիս իրականացնել Ձեր հարցումը տվյալ պահին.Եթե Դուք սա սխալ եք համարում,ապա դիմեք Ձեր ինտերնետ կապ ապահովողին․

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/hy/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/hy/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:39:11.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Ժամանակային սահմանափակումը գերազանցված է

          +
          + +

          Պրոքսի սերվերը սահմանափակում է Ձեր համացանցում գտնվելու ժամանակը.Սահմանափակումը կգործի ցանցի կառավարիչի կողմից նշված ժամանակահատվածում

          +

          Այս սահմանափակումը իրականացված է Ձեր ինտերնետ կապ ապահովողի կողմից: Եթե Դուք սա սխալ եք համարում, դիմեք նրան:

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_AGENT_CONFIGURE squid-5.9/errors/hy/ERR_AGENT_CONFIGURE --- squid-5.8/errors/hy/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_AGENT_CONFIGURE 2023-05-01 10:39:11.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Վեբ բրաուզերի կարգաբերումներ + + +
          +

          ՍԽԱԼ

          +

          Վեբ բրաուզերի կարգաբերումներ

          +
          +
          + +
          +
          +

          Այս ցանցից օգտվելու համար Ձեր բրաուզերը անհրաժեշտ է կարգաբերել

          +
          + +

          Ինչպես փնտրել այս կարգաբերումները քո բրաուզերում:

          + +
          +For Firefox browsers go to: +
            +
          • Գործիքներ -> Կարգաբերումներ -> Լրացուցիչ -> Ցանց -> Կապի կարգաբերումներ
          • +
          • HTTP proxy դաշտում նշիր proxy name %h և port %b.
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Գործիքներ -> Ինտերնետ կարգաբերումներ -> Կապ -> LAN կարգաբերումներ ->Պրոքսի
          • +
          • HTTP proxy դաշտում նշիր proxy name %h և port %b.
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Գործիքներ -> Նախընտրություններ -> Լրացուցիչ -> Ցանց -> Պրոքսի սերվերներ
          • +
          • HTTP proxy դաշտում նշիր proxy name %h և port %b.
          • +
          +
          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_AGENT_WPAD squid-5.9/errors/hy/ERR_AGENT_WPAD --- squid-5.8/errors/hy/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_AGENT_WPAD 2023-05-01 10:39:11.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Վեբ բրաուզերի կարգաբերումներ + + +
          +

          ՍԽԱԼ

          +

          Վեբ բրաուզերի կարգաբերումներ

          +
          +
          + +
          +
          +

          Այս ցանցից օգտվելու համար Ձեր բրաուզերը անհրաժեշտ է կարգաբերել

          +
          + +

          Ինչպես փնտրել այս կարգաբերումները քո բրաուզերում:

          + +
          +For Firefox browsers go to: +
            +
          • Գործիքներ -> Կարգաբերումներ -> Լրացուցիչ -> Ցանց -> Կապի կարգաբերումներ
          • +
          • Ընտրեք Auto-detect proxy settings for this network
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Գործիքներ -> Ինտերնետ կարգաբերումներ -> Կապ -> LAN կարգաբերումներ ->Պրոքսի
          • +
          • Ընտրեք Automatically detect settings
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Գործիքներ -> Նախընտրություններ -> Լրացուցիչ -> Ցանց -> Պրոքսի սերվերներ
          • +
          • Ընտրեք Use Automatic proxy configuration
          • +
          +
          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/hy/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/hy/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:39:11.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ՍԽԱԼ: Մուտքը քեշին արգելված է + + +
          +

          ՍԽԱԼ

          +

          Մուտքը քեշին արգելված է.

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Մուտքը քեշին արգելված է.

          +
          + +

          Ներողություն,Դուք չեք կարող իրականացնել հետևյալ հարցումը %U մինչև աութենտիֆիկացիան չանցնեք.

          + +

          Խնդիրներ առաջանալու դեպքում խնդրվում է դիմելքեշի կառավարիչին կամ փոխել Ձեր ընթացիկ գաղտնաբառը.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/hy/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/hy/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:39:12.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ՍԽԱԼ: Քեշի կառավառման մուտքն արգելված է + + +
          +

          ՍԽԱԼ

          +

          Քեշի կառավառման մուտքն արգելված է.

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Քեշի կառավառման մուտքն արգելված է.

          +
          + +

          Ներողություն,Դուք չեք կարող քեշի կառավարման համակարգից իրականացնել հետևյալ հարցումը %U մինչև աութենտիֆիկացիան չանցնեք.

          + +

          Աութենտիֆիկացիայի հետ խնդիրներ առաջանալու դեպքում խնդրվում է դիմելքեշի կառավարիչին.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_CANNOT_FORWARD squid-5.9/errors/hy/ERR_CANNOT_FORWARD --- squid-5.8/errors/hy/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_CANNOT_FORWARD 2023-05-01 10:39:12.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Ձեր հարցումը հնարավոր չէ վերահասցեագրել տվյալ պահին

          +
          + +

          Հարցումը չի կարող վերահասցեագրվել որևէ ծնողական քեշի

          + +

          Հնարավոր պատճառներն են:

          +
            +
          • Հնարավոր է, ելակետային սերվերներին միանալու համար անհրաժեշտ կապը խափանվել է
          • +
          • Բոլոր ծնողական քեշերը կարող են զբաղված լինել այս պահին
          • +
          • Կառավարիչը կարող է արգելել ուղիղ կապ հաստատել ելակետային սերվերների հետ
          • +
          + +

          Ձեր քեշի կառավարիչը %w է.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_CONFLICT_HOST squid-5.9/errors/hy/ERR_CONFLICT_HOST --- squid-5.8/errors/hy/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_CONFLICT_HOST 2023-05-01 10:39:12.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +
          URI հանգույցի կոնֆլիկտ
          +
          + +

          Սա նշանակում է, որ դոմեյնը ,որին փորձում եք կապվել, այլևս գոյություն չունի

          + +

          Հնարավոր պատճառներն են:

          +
            +
          • Հնարավոր է, դոմենը տեղափոխվել է․ Կրկին փորձեք
          • +
          • Օգտագործեք Ձեր պրովայդերի տրամադրած DNS սերվերները
          • +
          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_CONNECT_FAIL squid-5.9/errors/hy/ERR_CONNECT_FAIL --- squid-5.8/errors/hy/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_CONNECT_FAIL 2023-05-01 10:39:12.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Չհաջողվեց կապ հաստատել %I -ի հետ

          +
          + +

          Ստացված պատասխանը: %E

          + +

          Հեռակա հանգույցը կամ ցանցը չեն պատասխանում: Խնդրվում է կրկնել հարցումը:

          + +

          Ձեր քեշի կառավարիչը %w է.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_DIR_LISTING squid-5.9/errors/hy/ERR_DIR_LISTING --- squid-5.8/errors/hy/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_DIR_LISTING 2023-05-01 10:39:12.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Դիրեկտորիա: %U + + +
          +

          Դիրեկտորիա: %U/

          +
          +
          + +
          +

          Դիրեկտորիայի պարունակությունը:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Ծնողական դիրեկտորիա (Արմատական դիրեկտորիա)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_DNS_FAIL squid-5.9/errors/hy/ERR_DNS_FAIL --- squid-5.8/errors/hy/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_DNS_FAIL 2023-05-01 10:39:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Անհնար է որոշել %H հանգույցի IP հասցեն.

          +
          + +

          DNS սերվերի պատասխանը:

          +
          +
          %z
          +
          + +

          Սա նշանակում է, որ քեշը ի վիճակի չէ որոշել URL- ում նշված սերվերի հասցեն: Ստուգեք հասցեի ներմուծման ճշտությունը:

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_ESI squid-5.9/errors/hy/ERR_ESI --- squid-5.8/errors/hy/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_ESI 2023-05-01 10:39:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Չհաջողվեց մշակել ESI հարցումը

          +
          + +

          ESI հարցման պատասխանն է։

          +
          +
          %Z
          +
          + +

          Սա նշանակում է, որ փոխարինողը ի վիճակի չէ մշակել ESI կաղապարը:Խնդրվում է հայտնել այս մասին քեշի կառավարիչին:

          + +

          Ձեր կայքի կառավարիչը %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_FORWARDING_DENIED squid-5.9/errors/hy/ERR_FORWARDING_DENIED --- squid-5.8/errors/hy/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_FORWARDING_DENIED 2023-05-01 10:39:13.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Վերահասցեագրումն արգելված է.

          +
          + +

          Այս քեշը անկարող է վերահասցեագրել Ձեր հարցումը sibling տիպի փոխհարաբերություններ հաստատելու պատճառով: Հավանական է, որ %i -ն սխալ սարքաբերված քեշ է.

          + +

          Ձեր քեշի կառավարիչը %w է.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_FTP_DISABLED squid-5.9/errors/hy/ERR_FTP_DISABLED --- squid-5.8/errors/hy/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_FTP_DISABLED 2023-05-01 10:39:13.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          FTP արձանագրությունն արգելված է

          +
          + +

          Այս քեշը FTP արձանագրություն չի աջակցում

          + +

          Ձեր քեշի կառավարիչը %w է.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_FTP_FAILURE squid-5.9/errors/hy/ERR_FTP_FAILURE --- squid-5.8/errors/hy/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_FTP_FAILURE 2023-05-01 10:39:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL -ի ստացման ընթացքում տեղի ունեցավ FTP արձանագրության սխալ: %U

          + +

          Squid-ը ուղարկեց հետևյալ FTP հրամանը:

          +
          +
          %f
          +
          + +

          Սերվերը պատասխանեց:

          +
          +
          %F
          +
          %g
          +
          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_FTP_FORBIDDEN squid-5.9/errors/hy/ERR_FTP_FORBIDDEN --- squid-5.8/errors/hy/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_FTP_FORBIDDEN 2023-05-01 10:39:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL -ի ստացման ընթացքում տեղի ունեցավ FTP աութենտիֆիկացիայի սխալ: %U

          + +

          Squid-ը ուղարկեց հետևյալ FTP հրամանը:

          +
          +
          %f
          +
          + +

          Սերվերը պատասխանեց:

          +
          +
          %F
          +
          %g
          +
          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_FTP_NOT_FOUND squid-5.9/errors/hy/ERR_FTP_NOT_FOUND --- squid-5.8/errors/hy/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_FTP_NOT_FOUND 2023-05-01 10:39:14.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          Հետևյալ URL-ն հնարավոր չէ ստանալ: %U

          + +

          Squid-ը ուղարկեց հետևյալ FTP հրամանը:

          +
          +
          %f
          +
          + +

          Սերվերը պատասխանեց:

          +
          +
          %F
          +
          %g
          +
          + +

          Սա կարող է լինել FTP URL -ի բացարձակ ուղիով հարցման արդյունք (ինչը չի համապատասխանում RFC 1738-ին). Եթե սա է սխալի պատճառը, ապա ֆայլը կարող է գնտվել այստեղ %B.

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_FTP_PUT_CREATED squid-5.9/errors/hy/ERR_FTP_PUT_CREATED --- squid-5.8/errors/hy/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_FTP_PUT_CREATED 2023-05-01 10:39:14.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Գործողությունը հաջողվեց: Ֆայլը ստեղծված է + + +
          +

          Գործողությունը հաջողվեց

          +

          Ֆայլը ստեղծված է

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_FTP_PUT_ERROR squid-5.9/errors/hy/ERR_FTP_PUT_ERROR --- squid-5.8/errors/hy/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_FTP_PUT_ERROR 2023-05-01 10:39:14.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ՍԽԱԼ; FTP upload գործողությունը խափանվեց + + +
          +

          ՍԽԱԼ

          +

          FTP upload գործողությունը խափանվեց

          +
          +
          + +
          +

          URL -ի ստացման ընթացքում տեղի ունեցավ FTP արձանագրության սխալ: %U

          + +

          Squid-ը ուղարկեց հետևյալ FTP հրամանը:

          +
          +
          %f
          +
          + +

          Սերվերը պատասխանեց:

          +
          +
          %F
          +
          + +

          Սա նշանակում է,որ FTP սերվերը ֆայլը պահպանելու համար բավարար հիշողության ծավալ կամ թույտվություն չունի: Ստուգեք ճանապարհը, հիշողության ծավալը, մուտքի իրավունքները և կրկին փորձեք:

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_FTP_PUT_MODIFIED squid-5.9/errors/hy/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/hy/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_FTP_PUT_MODIFIED 2023-05-01 10:39:14.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Գործողությունը հաջողվեց: Ֆայլը ստեղծված է + + +
          +

          Գործողությունը հաջողվեց

          +

          Ֆայլը թարմացված է

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_FTP_UNAVAILABLE squid-5.9/errors/hy/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/hy/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_FTP_UNAVAILABLE 2023-05-01 10:39:14.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում FTP սերվերը շատ զբաղված էր: %U

          + +

          Squid-ը ուղարկեց հետևյալ FTP հրամանը:

          + +
          +
          %f
          +
          + +

          Սերվերը պատասխանեց:

          +
          +
          %F
          +
          %g
          +
          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_GATEWAY_FAILURE squid-5.9/errors/hy/ERR_GATEWAY_FAILURE --- squid-5.8/errors/hy/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_GATEWAY_FAILURE 2023-05-01 10:39:15.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Երթուղային պրոքսի սերվերի խափանում

          +
          + +

          Ներքին խափանման պատճառով այս հարցումը հնարավոր չէ ավարտել

          + +

          Այս սահմանափակումը իրականացված է Ձեր ինտերնետ կապ ապահովողի կողմից: Եթե Դուք սա սխալ եք համարում, դիմեք նրան:

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_ICAP_FAILURE squid-5.9/errors/hy/ERR_ICAP_FAILURE --- squid-5.8/errors/hy/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_ICAP_FAILURE 2023-05-01 10:39:15.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          ICAP արձանարության սխալ

          +
          + +

          Ստացված պատասխանը: %E

          + +

          Սա նշանակում է, որ ICAP կոմունիկացիայի որոշ ասպեկտներ սխալ են:

          + +

          Հնարավոր պատճառներն են:

          +
            +
          • ICAP սերվերը անհասանելի է:

          • +
          • Սխալ պատասխան է ստացվել ICAP սերվերից

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_INVALID_REQ squid-5.9/errors/hy/ERR_INVALID_REQ --- squid-5.8/errors/hy/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_INVALID_REQ 2023-05-01 10:39:15.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          Սխալ հարցում հարցումն իրականացնելու ընթացքում տեղի ունեցավ սխալ:

          + +
          +
          %R
          +
          + +

          Հնարավոր պատճառներն են:

          +
            +
          • Հարցման մեթոդը բացակայում է կամ անհայտ է

          • +
          • URL -ն բացակայում է

          • +
          • HTTP իդենտիֆիկատորը բացակայում է (HTTP/1.0)

          • +
          • Հարցման ծավալը շատ մեծ է

          • +
          • POST կամ PUT հարցումների համար Content-Length չի նշված

          • +
          • Անթույլատրելի նիշ սերվերի անվան մեջ; ընդգծման նիշն անթույլատրելի է

          • +
          • HTTP/1.1 Expect:հնարավորության համար հարցում է կատարվում HTTP/1.0 ծրագրային միջոցից

          • +
          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_INVALID_RESP squid-5.9/errors/hy/ERR_INVALID_RESP --- squid-5.8/errors/hy/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_INVALID_RESP 2023-05-01 10:39:15.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          Անթույլատրելի պատասխան հարցումն իրականացնելու ընթացքում տեղի ունեցավ սխալ:

          + +
          +
          %R
          +
          + +

          Սերվերից ստացվող պատասխանն անհասկանալի է կամ այլայլված: Դիմեք տվյալ կայքի կառավարիչներին։ Ձեր քեշի կառավարիչը անհրաժեշտության դեպքում կարող է ավելի մանրակրկիտ նկարագրել խնդրի բնւյթը:

          + +

          Սերվերից ստացվող պատասխանն անհասկանալի է կամ այլայլված: Դիմեք տվյալ կայքի կառավարիչներին։ Ձեր քեշի կառավարիչը անհրաժեշտության դեպքում կարող է ավելի մանրակրկիտ նկարագրել խնդրի բնւյթը:

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_INVALID_URL squid-5.9/errors/hy/ERR_INVALID_URL --- squid-5.8/errors/hy/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_INVALID_URL 2023-05-01 10:39:15.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Սխալ URL

          +
          + +

          URL-ի որոշ ասպեկտներ սխալ են.

          + +

          Հնարավոր պատճառներն են:

          +
            +
          • Մուտքային արձանագրությունը սխալ է կամ բացակայում է (պետք է լինի http:// կամ նման)

          • +
          • Հանգույցի անունը բացակայում է

          • +
          • Անթույլատրելի կրկնակի կառավարող նիշ URL-ի ուղիում

          • +
          • Անթույլատրելի նիշ սերվերի անվան մեջ; ընդգծման նիշն անթույլատրելի է

          • +
          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_LIFETIME_EXP squid-5.9/errors/hy/ERR_LIFETIME_EXP --- squid-5.8/errors/hy/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_LIFETIME_EXP 2023-05-01 10:39:15.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Կապի հաստատման ժամանակը սպառվեց

          +
          + +

          Squid-ը ընդհատեց հարցումը կապ հաստատման առավելագույն ժամանակը գերազանցելու պատճառով

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_NO_RELAY squid-5.9/errors/hy/ERR_NO_RELAY --- squid-5.8/errors/hy/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_NO_RELAY 2023-05-01 10:39:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Wais Relay-ը որոշված չէ

          +
          + +

          Այս քեշի համար WAIS Relay-ը որոշված չէ! Հայտնեք կառավարիչին:

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/hy/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/hy/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:39:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Օբյեկտը քեշում գտնված չէ; ձևավորվեց only-if-cached դիրեկտիվը.

          +
          + +

          Դուք իրականացրեցիք հարցում only-if-cached քեշի կառավարման դիրեկտիվով: Փաստաթուղթը քեշում բացակայում է կամonly-if-cached դիրեկտիվի կողմից արգելված հաստատում:

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/error-details.txt squid-5.9/errors/hy/error-details.txt --- squid-5.8/errors/hy/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/error-details.txt 2023-05-01 10:39:18.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/hy/ERR_PRECONDITION_FAILED squid-5.9/errors/hy/ERR_PRECONDITION_FAILED --- squid-5.8/errors/hy/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_PRECONDITION_FAILED 2023-05-01 10:39:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Չհաջողվեց մշակել նախապայմանը

          +
          + +

          Սա նշանակում է:

          +
          +

          HTTP հարցումի նախապայմաններից առնվազն մեկը անհնար է մշակել

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/hy/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/hy/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:39:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_READ_ERROR squid-5.9/errors/hy/ERR_READ_ERROR --- squid-5.8/errors/hy/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_READ_ERROR 2023-05-01 10:39:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Ընթերցման սխալ

          +
          + +

          Ստացված պատասխանը: %E

          + +

          Ցանցից տվյալների ընթերցման ընթացքում առաջացավ սխալ.Խնդրվում է կրկնել հարցումը.

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_READ_TIMEOUT squid-5.9/errors/hy/ERR_READ_TIMEOUT --- squid-5.8/errors/hy/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_READ_TIMEOUT 2023-05-01 10:39:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Պատասխան սպասելու առավելագույն ժամանակը գերազանցված է

          +
          + +

          Ստացված պատասխանը: %E

          + +

          Ցանցից տվյալների ընթերցման ընթացքում սպասման առավելագույն ժամանակը գերազանցվեց․Ցանցը կամ հանգույցը չեն աշխատում կամ գերբեռնված են։ Խնդրվում է կրկնել հարցումը

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/hy/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/hy/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:39:17.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Չհաջողվեց անվտանգ կապ հաստատել %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Հնարավոր է,որ հեռակա հանգույցը չի աջակցում անվտանգ կապի հաստատում

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_SHUTTING_DOWN squid-5.9/errors/hy/ERR_SHUTTING_DOWN --- squid-5.8/errors/hy/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_SHUTTING_DOWN 2023-05-01 10:39:17.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +

          Այս քեշը տվյալ պահին գտնվում է անջատման պրոցեսում և չի կարող սպասարկել Ձեր հարցումը: Կրկնեք հարցումը որոշ ժամանակ անց:

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_SOCKET_FAILURE squid-5.9/errors/hy/ERR_SOCKET_FAILURE --- squid-5.8/errors/hy/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_SOCKET_FAILURE 2023-05-01 10:39:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Socket -ի ձախողում

          +
          + +

          Ստացված պատասխանը: %E

          + +

          Squid-ը չի կարող ստեղծել TCP Socket, հավանաբար գերբեռնվածության պատճառով: Խնդրվում է կրկնել հարցումը: Եթե իրավիճակը կրկնվի, դիմեք քեշի կառավարիչին․:

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_TOO_BIG squid-5.9/errors/hy/ERR_TOO_BIG --- squid-5.8/errors/hy/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_TOO_BIG 2023-05-01 10:39:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Հարցումը կամ պատասխանը շատ մեծ ծավալ ունեն.

          +
          + +

          POST հարցման օբյեկտը շատ մեծ ծավալ ունի.

          +

          GET հարցման օբյեկտը շատ մեծ ծավալ ունի.

          +

          Այս սահմանափակումը իրականացված է Ձեր ինտերնետ կապ ապահովողի կողմից: Եթե Դուք սա սխալ եք համարում, դիմեք նրան:

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_UNSUP_HTTPVERSION squid-5.9/errors/hy/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/hy/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_UNSUP_HTTPVERSION 2023-05-01 10:39:17.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          HTTP արձանագրության այս վարկածը չի աջակցվում

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          HTTP արձանագրության այս վարկածը չի աջակցվում

          +
          + +

          HTTP արձանագրության այն տեսակը, որը Դուք փորձում եք օգտագործել,այս Squid-ը չի ընդունում:

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_UNSUP_REQ squid-5.9/errors/hy/ERR_UNSUP_REQ --- squid-5.8/errors/hy/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_UNSUP_REQ 2023-05-01 10:39:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Հարցում իրականացնելու մեթոդը և արձանագրությունը չեն աջակցվում

          +
          + +

          Squid-ը բոլոր արձանագրությունների համար բոլոր հարցման մեթոդները չի աջակցում. Օրինակ, Gopher արձանագրության համար չեք կարող POST հարցում կատարել.

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_URN_RESOLVE squid-5.9/errors/hy/ERR_URN_RESOLVE --- squid-5.8/errors/hy/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_URN_RESOLVE 2023-05-01 10:39:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URN-ի համար URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URN-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Չհաջողվեց մշակել URN հարցումը

          +
          + +

          Չարժե շատ բան սպասել URN-ից %T -ի վրա :)

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_WRITE_ERROR squid-5.9/errors/hy/ERR_WRITE_ERROR --- squid-5.8/errors/hy/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_WRITE_ERROR 2023-05-01 10:39:18.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Գրանցման սխալ

          +
          + +

          Ստացված պատասխանը: %E

          + +

          Տվյալները ցանցում գրանցելու ընթացքում առաջացավ սխալ․ Խնդրվում է կրկնել հարցումը․

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/hy/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/hy/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/hy/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/hy/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:39:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ՍԽԱԼ: Պահանջվող URL-ն հնարավոր չէ ստանալ + + +
          +

          ՍԽԱԼ

          +

          Պահանջվող URL-ն հնարավոր չէ ստանալ

          +
          +
          + +
          +

          URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: %U

          + +
          +

          Զրոյական երկարությամբ պատասխան

          +
          + +

          Քեշը ի պատասխան այս հարցումի ոչ մի տվյալ չի ստացել.

          + +

          Ձեր քեշի կառավարիչը %w է.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/id/ERR_ACCESS_DENIED squid-5.9/errors/id/ERR_ACCESS_DENIED --- squid-5.8/errors/id/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_ACCESS_DENIED 2023-05-01 10:39:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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

          +
          + +

          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-5.8/errors/id/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/id/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/id/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:39:18.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/id/ERR_AGENT_CONFIGURE squid-5.9/errors/id/ERR_AGENT_CONFIGURE --- squid-5.8/errors/id/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_AGENT_CONFIGURE 2023-05-01 10:39:19.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +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-5.8/errors/id/ERR_AGENT_WPAD squid-5.9/errors/id/ERR_AGENT_WPAD --- squid-5.8/errors/id/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_AGENT_WPAD 2023-05-01 10:39:19.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +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-5.8/errors/id/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/id/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/id/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:39:19.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/id/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/id/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/id/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:39:19.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/id/ERR_CANNOT_FORWARD squid-5.9/errors/id/ERR_CANNOT_FORWARD --- squid-5.8/errors/id/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_CANNOT_FORWARD 2023-05-01 10:39:19.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/id/ERR_CONFLICT_HOST squid-5.9/errors/id/ERR_CONFLICT_HOST --- squid-5.8/errors/id/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_CONFLICT_HOST 2023-05-01 10:39:20.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/id/ERR_CONNECT_FAIL squid-5.9/errors/id/ERR_CONNECT_FAIL --- squid-5.8/errors/id/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_CONNECT_FAIL 2023-05-01 10:39:20.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +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-5.8/errors/id/ERR_DIR_LISTING squid-5.9/errors/id/ERR_DIR_LISTING --- squid-5.8/errors/id/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_DIR_LISTING 2023-05-01 10:39:20.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/id/ERR_DNS_FAIL squid-5.9/errors/id/ERR_DNS_FAIL --- squid-5.8/errors/id/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_DNS_FAIL 2023-05-01 10:39:20.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +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-5.8/errors/id/ERR_ESI squid-5.9/errors/id/ERR_ESI --- squid-5.8/errors/id/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_ESI 2023-05-01 10:39:20.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +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-5.8/errors/id/ERR_FORWARDING_DENIED squid-5.9/errors/id/ERR_FORWARDING_DENIED --- squid-5.8/errors/id/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_FORWARDING_DENIED 2023-05-01 10:39:20.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/id/ERR_FTP_DISABLED squid-5.9/errors/id/ERR_FTP_DISABLED --- squid-5.8/errors/id/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_FTP_DISABLED 2023-05-01 10:39:21.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/id/ERR_FTP_FAILURE squid-5.9/errors/id/ERR_FTP_FAILURE --- squid-5.8/errors/id/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_FTP_FAILURE 2023-05-01 10:39:21.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +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-5.8/errors/id/ERR_FTP_FORBIDDEN squid-5.9/errors/id/ERR_FTP_FORBIDDEN --- squid-5.8/errors/id/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_FTP_FORBIDDEN 2023-05-01 10:39:21.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +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-5.8/errors/id/ERR_FTP_NOT_FOUND squid-5.9/errors/id/ERR_FTP_NOT_FOUND --- squid-5.8/errors/id/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_FTP_NOT_FOUND 2023-05-01 10:39:21.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +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-5.8/errors/id/ERR_FTP_PUT_CREATED squid-5.9/errors/id/ERR_FTP_PUT_CREATED --- squid-5.8/errors/id/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_FTP_PUT_CREATED 2023-05-01 10:39:21.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operation successful

          +

          File created

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/id/ERR_FTP_PUT_ERROR squid-5.9/errors/id/ERR_FTP_PUT_ERROR --- squid-5.8/errors/id/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_FTP_PUT_ERROR 2023-05-01 10:39:21.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +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-5.8/errors/id/ERR_FTP_PUT_MODIFIED squid-5.9/errors/id/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/id/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_FTP_PUT_MODIFIED 2023-05-01 10:39:22.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operation successful

          +

          File sudah diperbaharui

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/id/ERR_FTP_UNAVAILABLE squid-5.9/errors/id/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/id/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_FTP_UNAVAILABLE 2023-05-01 10:39:22.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +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-5.8/errors/id/ERR_GATEWAY_FAILURE squid-5.9/errors/id/ERR_GATEWAY_FAILURE --- squid-5.8/errors/id/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_GATEWAY_FAILURE 2023-05-01 10:39:22.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/id/ERR_ICAP_FAILURE squid-5.9/errors/id/ERR_ICAP_FAILURE --- squid-5.8/errors/id/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_ICAP_FAILURE 2023-05-01 10:39:22.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +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:

          +
            +
          • The ICAP server is not reachable.

          • +
          • Jawaban Ilegal diterima dari server ICAP.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/id/ERR_INVALID_REQ squid-5.9/errors/id/ERR_INVALID_REQ --- squid-5.8/errors/id/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_INVALID_REQ 2023-05-01 10:39:22.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          ERROR

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          Permintaan tidak valid telah menemui kesalahan ketika mencoba memproses permintaan:

          + +
          +
          %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.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/id/ERR_INVALID_RESP squid-5.9/errors/id/ERR_INVALID_RESP --- squid-5.8/errors/id/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_INVALID_RESP 2023-05-01 10:39:23.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: The requested URL could not be retrieved + + +
          +

          ERROR

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          Respon tidak valid telah menemui kesalahan ketika mencoba memproses 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-5.8/errors/id/ERR_INVALID_URL squid-5.9/errors/id/ERR_INVALID_URL --- squid-5.8/errors/id/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_INVALID_URL 2023-05-01 10:39:23.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +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-5.8/errors/id/ERR_LIFETIME_EXP squid-5.9/errors/id/ERR_LIFETIME_EXP --- squid-5.8/errors/id/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_LIFETIME_EXP 2023-05-01 10:39:23.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/id/ERR_NO_RELAY squid-5.9/errors/id/ERR_NO_RELAY --- squid-5.8/errors/id/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_NO_RELAY 2023-05-01 10:39:23.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/id/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/id/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/id/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:39:23.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/id/error-details.txt squid-5.9/errors/id/error-details.txt --- squid-5.8/errors/id/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/error-details.txt 2023-05-01 10:39:26.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/id/ERR_PRECONDITION_FAILED squid-5.9/errors/id/ERR_PRECONDITION_FAILED --- squid-5.8/errors/id/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_PRECONDITION_FAILED 2023-05-01 10:39:23.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/id/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/id/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/id/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:39:24.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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 Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/id/ERR_READ_ERROR squid-5.9/errors/id/ERR_READ_ERROR --- squid-5.8/errors/id/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_READ_ERROR 2023-05-01 10:39:24.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/id/ERR_READ_TIMEOUT squid-5.9/errors/id/ERR_READ_TIMEOUT --- squid-5.8/errors/id/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_READ_TIMEOUT 2023-05-01 10:39:24.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/id/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/id/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/id/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:39:24.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +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

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/id/ERR_SHUTTING_DOWN squid-5.9/errors/id/ERR_SHUTTING_DOWN --- squid-5.8/errors/id/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_SHUTTING_DOWN 2023-05-01 10:39:24.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +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-5.8/errors/id/ERR_SOCKET_FAILURE squid-5.9/errors/id/ERR_SOCKET_FAILURE --- squid-5.8/errors/id/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_SOCKET_FAILURE 2023-05-01 10:39:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/id/ERR_TOO_BIG squid-5.9/errors/id/ERR_TOO_BIG --- squid-5.8/errors/id/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_TOO_BIG 2023-05-01 10:39:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/id/ERR_UNSUP_HTTPVERSION squid-5.9/errors/id/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/id/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_UNSUP_HTTPVERSION 2023-05-01 10:39:25.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/id/ERR_UNSUP_REQ squid-5.9/errors/id/ERR_UNSUP_REQ --- squid-5.8/errors/id/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_UNSUP_REQ 2023-05-01 10:39:25.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/id/ERR_URN_RESOLVE squid-5.9/errors/id/ERR_URN_RESOLVE --- squid-5.8/errors/id/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_URN_RESOLVE 2023-05-01 10:39:25.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          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-5.8/errors/id/ERR_WRITE_ERROR squid-5.9/errors/id/ERR_WRITE_ERROR --- squid-5.8/errors/id/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_WRITE_ERROR 2023-05-01 10:39:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/id/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/id/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/id/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/id/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:39:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/it/ERR_ACCESS_DENIED squid-5.9/errors/it/ERR_ACCESS_DENIED --- squid-5.8/errors/it/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_ACCESS_DENIED 2023-05-01 10:39:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Accesso negato.

          +
          + +

          La richiesta non è permessa dalle impostazioni di sicurezza. Se ritieni sia un errore, contatta il fornitore del servizio.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/it/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/it/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:39:26.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Tempo disponibile esaurito.

          +
          + +

          Questo proxy impone un limite al tempo a tua disposizione online, che è terminato. Verrà automaticamente riempito al momento opportuno.

          +

          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-5.8/errors/it/ERR_AGENT_CONFIGURE squid-5.9/errors/it/ERR_AGENT_CONFIGURE --- squid-5.8/errors/it/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_AGENT_CONFIGURE 2023-05-01 10:39:26.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Configurazione del browser + + +
          +

          ERRORE

          +

          Configurazione del browser

          +
          +
          + +
          +
          +

          La configurazione del tuo browser dev'essere modificata prima di poter utilizzare questa rete.

          +
          + +

          Indicazioni su come configurare il tuo browser sono disponibili a:

          + +
          +For Firefox browsers go to: +
            +
          • Strumenti -> Opzioni -> Avanzate -> Rete -> Impostazioni di connessione
          • +
          • Nel box "Proxy HTTP" inserisci l'indirizzo del proxy (%h) e la porta %b.
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Strumenti -> Opzioni Internet -> Connessioni -> Impostazioni LAN ->Proxy
          • +
          • Nel box "Proxy HTTP" inserisci l'indirizzo del proxy (%h) e la porta %b.
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Strumenti -> Preferenze -> Avanzate -> Rete -> Server proxy
          • +
          • Nel box "Proxy HTTP" inserisci l'indirizzo del proxy (%h) e la porta %b.
          • +
          +
          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_AGENT_WPAD squid-5.9/errors/it/ERR_AGENT_WPAD --- squid-5.8/errors/it/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_AGENT_WPAD 2023-05-01 10:39:26.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Configurazione del browser + + +
          +

          ERRORE

          +

          Configurazione del browser

          +
          +
          + +
          +
          +

          La configurazione del tuo browser dev'essere modificata prima di poter utilizzare questa rete.

          +
          + +

          Indicazioni su come configurare il tuo browser sono disponibili a:

          + +
          +For Firefox browsers go to: +
            +
          • Strumenti -> Opzioni -> Avanzate -> Rete -> Impostazioni di connessione
          • +
          • Seleziona "Rileva automaticamente impostazioni proxy per questa rete"
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Strumenti -> Opzioni Internet -> Connessioni -> Impostazioni LAN ->Proxy
          • +
          • Seleziona "Rileva automaticamente impostazioni"
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Strumenti -> Preferenze -> Avanzate -> Rete -> Server proxy
          • +
          • Seleziona "Usa script di configurazione automatica"
          • +
          +
          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/it/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/it/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:39:26.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRORE: accesso alla cache negato + + +
          +

          ERRORE

          +

          Accesso alla cache negato.

          +
          +
          + +
          +

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

          + +
          +

          Accesso alla cache negato.

          +
          + +

          Per richiedere %U da questa cache è necessario prima identificarsi.

          + +

          Si prega di contattare il gestore del vostro proxy se avete diffcoltà nell'identificarvi per l'accesso al servizio, o di cambiare la vostra password iniziale.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/it/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/it/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:39:27.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRORE: accesso al Cache Manager negato + + +
          +

          ERRORE

          +

          L'accesso al cache manager è negato.

          +
          +
          + +
          +

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

          + +
          +

          L'accesso al cache manager è negato.

          +
          + +

          Per richiedere %U da questo cache manager è necessario prima identificarsi.

          + +

          Si prega di contattare il gestore del vostro proxy se avete diffcoltà nell'identificarvi per l'accesso al servizio o, se siete l'amministratore, di consultare la documentazione di Squid riguardante l'interfaccia del cache manager e di verificare il log del servizio alla ricerca informazioni più dettagliate sull'errore.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_CANNOT_FORWARD squid-5.9/errors/it/ERR_CANNOT_FORWARD --- squid-5.8/errors/it/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_CANNOT_FORWARD 2023-05-01 10:39:27.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Non è possibile inoltrare la richiesta in questo momento.

          +
          + +

          Non è stato possibile inoltrare questa richiesta nè al server di origine nè a alcuna cache di livello superiore.

          + +

          Alcuni dei possibili problemi sono:

          +
            +
          • Una connessione ad Internet necessaria per raggiungere i server per questo dominio potrebbe essere indisponibile.
          • +
          • Tutte le cache di livello superiore potrebbero non essere raggiungibili in questo momento.
          • +
          • L'amministratore potrebbe non consentire a questa cache di fare collegamenti diretti ai server di origine.
          • +
          + +

          L'amministratore del proxy è %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_CONFLICT_HOST squid-5.9/errors/it/ERR_CONFLICT_HOST --- squid-5.8/errors/it/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_CONFLICT_HOST 2023-05-01 10:39:27.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +
          Conflitto nell'host della URI
          +
          + +

          Questo significa che il nome di dominio che stai cercando di daggiungere non esiste più sul server da cui lo state richiedendo.

          + +

          Alcuni dei possibili problemi sono:

          +
            +
          • Questo dominio potrebbe essere stato spostato molto di recente. Un nuovo tentativo dovrebbe risolvere la situazione.
          • +
          • Il sito web potrebbe richiedere di usare una versione localizzata. Facendo riferimento ai server DNS forniti dal vostro ISP dovrebbe risolvere l'inconveniente.
          • +
          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_CONNECT_FAIL squid-5.9/errors/it/ERR_CONNECT_FAIL --- squid-5.8/errors/it/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_CONNECT_FAIL 2023-05-01 10:39:27.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          La connessione a %I non è riuscita.

          +
          + +

          Il sistema ha risposto: %E

          + +

          Il server remoto e` irraggiungibile, forse per un guasto di rete. Riprova tra qualche minuto.

          + +

          L'amministratore del proxy è %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_DIR_LISTING squid-5.9/errors/it/ERR_DIR_LISTING --- squid-5.8/errors/it/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_DIR_LISTING 2023-05-01 10:39:27.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Contenuto della directory:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Directory superiore (Directory principale)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_DNS_FAIL squid-5.9/errors/it/ERR_DNS_FAIL --- squid-5.8/errors/it/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_DNS_FAIL 2023-05-01 10:39:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Non è stato possibile risalire all'indirizzo IP corrispondente al nome host %H

          +
          + +

          Il server DNS ha risposto:

          +
          +
          %z
          +
          + +

          Questo significa che il Proxy non è riuscito a tradurre il nome host nella URL nel relativo indirizzo. Verificate la correttezza dell'indirizzo e riprovate.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_ESI squid-5.9/errors/it/ERR_ESI --- squid-5.8/errors/it/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_ESI 2023-05-01 10:39:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          L'elaborazione ESI è fallita.

          +
          + +

          Il sistema di gestione delle funzioni ESI ha risposto:

          +
          +
          %Z
          +
          + +

          Questo significa che il surrogate non è stato in grado di processare il template ESI. Si prega di segnalare l'errore al webmaster.

          + +

          Il webmaster è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_FORWARDING_DENIED squid-5.9/errors/it/ERR_FORWARDING_DENIED --- squid-5.8/errors/it/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_FORWARDING_DENIED 2023-05-01 10:39:28.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Inoltro negato.

          +
          + +

          Questo proxy non inoltrerà questa richiesta perché tenta di forzare una relazione di parentela. Forse il client all'indirizzo %i è un proxy configurato in modo errato.

          + +

          L'amministratore del proxy è %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_FTP_DISABLED squid-5.9/errors/it/ERR_FTP_DISABLED --- squid-5.8/errors/it/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_FTP_DISABLED 2023-05-01 10:39:28.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Il protocollo FTP è disabilitato

          +
          + +

          Questo proxy non supporta il protocollo FTP.

          + +

          L'amministratore del proxy è %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_FTP_FAILURE squid-5.9/errors/it/ERR_FTP_FAILURE --- squid-5.8/errors/it/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_FTP_FAILURE 2023-05-01 10:39:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

          Si è verificato un errore di protocollo FTP durante l'accesso alla URL %U

          + +

          Il comando FTP inviato da Squid era:

          +
          +
          %f
          +
          + +

          Il server ha risposto:

          +
          +
          %F
          +
          %g
          +
          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_FTP_FORBIDDEN squid-5.9/errors/it/ERR_FTP_FORBIDDEN --- squid-5.8/errors/it/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_FTP_FORBIDDEN 2023-05-01 10:39:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

          Le credenziali fornite per l'accesso al server FTP relativo alla URL %U sono invalide

          + +

          Il comando FTP inviato da Squid era:

          +
          +
          %f
          +
          + +

          Il server ha risposto:

          +
          +
          %F
          +
          %g
          +
          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_FTP_NOT_FOUND squid-5.9/errors/it/ERR_FTP_NOT_FOUND --- squid-5.8/errors/it/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_FTP_NOT_FOUND 2023-05-01 10:39:29.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

          Non è stato possibile accedere alla URL: %U.

          + +

          Il comando FTP inviato da Squid era:

          +
          +
          %f
          +
          + +

          Il server ha risposto:

          +
          +
          %F
          +
          %g
          +
          + +

          Questo potrebbe essere causato da una URL FTP contenente percorsi assoluti (il che non è compatibile con la RFC 1738). Se è questa la causa, il file può essere disponibile all'indirizzo %B.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_FTP_PUT_CREATED squid-5.9/errors/it/ERR_FTP_PUT_CREATED --- squid-5.8/errors/it/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_FTP_PUT_CREATED 2023-05-01 10:39:29.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +Comando FTP PUT eseguito correttamente. + + +
          +

          Operazione eseguita correttamente

          +

          Il file è stato creato

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_FTP_PUT_ERROR squid-5.9/errors/it/ERR_FTP_PUT_ERROR --- squid-5.8/errors/it/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_FTP_PUT_ERROR 2023-05-01 10:39:29.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERRORE: l'invio del file via FTP non è riuscito + + +
          +

          ERRORE

          +

          Comando FTP PUT non riuscito

          +
          +
          + +
          +

          Si è verificato un errore di protocollo FTP durante l'accesso alla URL %U

          + +

          Il comando FTP inviato da Squid era:

          +
          +
          %f
          +
          + +

          Il server ha risposto:

          +
          +
          %F
          +
          + +

          Questo significa che il server FTP potrebbe non avere i permessi o lo spazio per ricevere il file. Si prega di controllare il percorso, i permessi e lo spazio su disco e riprovare.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_FTP_PUT_MODIFIED squid-5.9/errors/it/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/it/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_FTP_PUT_MODIFIED 2023-05-01 10:39:29.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +Comando FTP PUT eseguito correttamente. + + +
          +

          Operazione eseguita correttamente

          +

          Il file è stato aggiornato

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_FTP_UNAVAILABLE squid-5.9/errors/it/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/it/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_FTP_UNAVAILABLE 2023-05-01 10:39:29.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

          Il server FTP era sovraccarico e non ha consentito di accedere alla URL: %U.

          + +

          Il comando FTP inviato da Squid era:

          + +
          +
          %f
          +
          + +

          Il server ha risposto:

          +
          +
          %F
          +
          %g
          +
          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_GATEWAY_FAILURE squid-5.9/errors/it/ERR_GATEWAY_FAILURE --- squid-5.8/errors/it/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_GATEWAY_FAILURE 2023-05-01 10:39:30.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Errore nel Proxy Gateway

          +
          + +

          Un errore interno non recuperabile o un problema di configurazione impedisce di portare a termine questa richiesta.

          + +

          Questi limiti sono stati stabiliti dall'ISP che gestisce questo proxy. Contatta il fornitore del servizio se cerchi maggiori informazioni.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_ICAP_FAILURE squid-5.9/errors/it/ERR_ICAP_FAILURE --- squid-5.8/errors/it/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_ICAP_FAILURE 2023-05-01 10:39:30.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Si è verificato un errore di protocollo ICAP.

          +
          + +

          Il sistema ha risposto: %E

          + +

          Questo significa che qualche aspetto della comunicazione ICAP non è stato completato regolarmente.

          + +

          Alcuni dei possibili problemi sono:

          +
            +
          • Il server ICAP non è raggiungibile.

          • +
          • Il server ICAP ha dato una risposta non valida (illegal response).

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_INVALID_REQ squid-5.9/errors/it/ERR_INVALID_REQ --- squid-5.8/errors/it/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_INVALID_REQ 2023-05-01 10:39:30.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

          Richiesta non valida. Si è verificato un errore durante l'elaborazione della richiesta:

          + +
          +
          %R
          +
          + +

          Alcuni dei possibili problemi sono:

          +
            +
          • Metodo della richiesta non specificato o sconoscito.

          • +
          • URL non specificata.

          • +
          • L'identificativo del protocollo HTTP è mancante (HTTP/1.0).

          • +
          • La richiesta è di dimensioni troppo grandi.

          • +
          • La richiesta di tipo POST o PUT non contiene il campo Content-Length.

          • +
          • Nome host non valido: i caratteri underscore ("_") non sono consentiti.

          • +
          • Un software HTTP/1.0 sta cercando di utilizzare le funzionalità Expect di HTTP/1.1.

          • +
          + +

          L'amministratore del proxy è %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_INVALID_RESP squid-5.9/errors/it/ERR_INVALID_RESP --- squid-5.8/errors/it/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_INVALID_RESP 2023-05-01 10:39:30.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

          Risposta non valida. Si è verificato un errore durante l'elaborazione della richiesta:

          + +
          +
          %R
          +
          + +

          Il messaggio di risposta HTTP ricevuto dal server non era comprensibile o era irregolare. Si prega di contattare il gestore del sito per segnalargli l'errore.

          + +

          L'amministratore del proxy potrebbe essere in grado di fornire ulteriori dettagli sul tipo di problema.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_INVALID_URL squid-5.9/errors/it/ERR_INVALID_URL --- squid-5.8/errors/it/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_INVALID_URL 2023-05-01 10:39:30.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          URL non valida

          +
          + +

          Qualche elemento della URL richiesta non è corretto.

          + +

          Alcuni dei possibili problemi sono:

          +
            +
          • Protocollo di accesso mancante o non corretto (dovrebbe essere http:// o simile)

          • +
          • Nome host non specificato

          • +
          • Doppia codifica ("double-escape") non valida nella path della URL

          • +
          • Nome host non valido: i caratteri underscore ("_") non sono consentiti.

          • +
          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_LIFETIME_EXP squid-5.9/errors/it/ERR_LIFETIME_EXP --- squid-5.8/errors/it/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_LIFETIME_EXP 2023-05-01 10:39:30.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Il tempo di vita della connessione è scaduto

          +
          + +

          La richiesta è stata interrotta perché è stato superato il limite di durata massima della connessione.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_NO_RELAY squid-5.9/errors/it/ERR_NO_RELAY --- squid-5.8/errors/it/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_NO_RELAY 2023-05-01 10:39:31.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Le funzioni di inoltro Wais non sono implementate

          +
          + +

          Non è stato definito nessun host per il relay del servizio WAIS! Prenditela con l'amministratore.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/it/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/it/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:39:31.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Non è stato possibile reperire un documento valido nella cache, e la richiesta contiene la direttiva only-if-cached.

          +
          + +

          La richiesta contiene la direttiva di controllo della cache only-if-cached. Non è stato possibile trovare il relativo documento nella cache, oppure richiedeva una operazione di verifica, non consentita dalla direttiva.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/error-details.txt squid-5.9/errors/it/error-details.txt --- squid-5.8/errors/it/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/error-details.txt 2023-05-01 10:39:33.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/it/ERR_PRECONDITION_FAILED squid-5.9/errors/it/ERR_PRECONDITION_FAILED --- squid-5.8/errors/it/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_PRECONDITION_FAILED 2023-05-01 10:39:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Precondizione non soddisfatta.

          +
          + +

          Questo significa:

          +
          +

          Almeno una delle precondizioni specificate dal client HTTP negli header della richiesta è fallita.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/it/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/it/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:39:31.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_READ_ERROR squid-5.9/errors/it/ERR_READ_ERROR --- squid-5.8/errors/it/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_READ_ERROR 2023-05-01 10:39:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Errore di lettura

          +
          + +

          Il sistema ha risposto: %E

          + +

          Si è verificato un errore durante la lettura delle informazioni dalla rete. Riprova più tardi.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_READ_TIMEOUT squid-5.9/errors/it/ERR_READ_TIMEOUT --- squid-5.8/errors/it/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_READ_TIMEOUT 2023-05-01 10:39:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Timeout nella lettura

          +
          + +

          Il sistema ha risposto: %E

          + +

          Si è verificato un errore di time-out durante la lettura delle informazioni. La rete o il server potrebbero essere inaccessibili o sovraccarichi. Riprovare più tardi.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/it/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/it/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:39:32.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Non è stato possibile stabilire una connessione sicura verso %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Questo proxy e l'host remoto non sono riusciti a negoziare una connessione sicura. Probabilmente il server remoto non supporta connessioni sicure, o il proxy non è soddisfatto delle credenziali di sicurezza proposte dall'host.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_SHUTTING_DOWN squid-5.9/errors/it/ERR_SHUTTING_DOWN --- squid-5.8/errors/it/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_SHUTTING_DOWN 2023-05-01 10:39:32.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +

          Non è possibile eseguire la richiesta perché è in corso lo spegnimento del proxy. Riprova tra poco.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_SOCKET_FAILURE squid-5.9/errors/it/ERR_SOCKET_FAILURE --- squid-5.8/errors/it/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_SOCKET_FAILURE 2023-05-01 10:39:32.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          L'operazione di rete (socket) è fallita

          +
          + +

          Il sistema ha risposto: %E

          + +

          Squid non è in grado di aprire un socket TCP, probabilmente per un sovraccarico. Riprovare più tardi.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_TOO_BIG squid-5.9/errors/it/ERR_TOO_BIG --- squid-5.8/errors/it/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_TOO_BIG 2023-05-01 10:39:32.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          La richesta o la risposta è di dimensioni troppo grandi.

          +
          + +

          Se la richiesta è di tipo PUT, ciò che si sta cercando di inviare è di dimensioni troppo grandi.

          +

          Se la richiesta è di tipo GET, ciò che si sta cercando di scaricare è di dimensioni troppo grandi.

          +

          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-5.8/errors/it/ERR_UNSUP_HTTPVERSION squid-5.9/errors/it/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/it/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_UNSUP_HTTPVERSION 2023-05-01 10:39:32.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Versione HTTP non supportata

          +
          +
          + +
          +

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

          + +
          +

          Versione HTTP non supportata

          +
          + +

          Questa installazione di Squid non supporta la versione HTTP che si sta cercando di utilizzare.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_UNSUP_REQ squid-5.9/errors/it/ERR_UNSUP_REQ --- squid-5.8/errors/it/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_UNSUP_REQ 2023-05-01 10:39:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Metodo e protocollo della richiesta non sono supportati.

          +
          + +

          Squid non consente di utilizzare qualsiasi tipo di richiesta per qualsiasi protocollo (a esempio non consente una richiesta POST su protocollo Gopher).

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_URN_RESOLVE squid-5.9/errors/it/ERR_URN_RESOLVE --- squid-5.8/errors/it/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_URN_RESOLVE 2023-05-01 10:39:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRORE: non è possibile accedere alla URN richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile ottenere una URL corrispondente alla URN richiesta

          +
          +
          + +
          +

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

          + +
          +

          Impossibile risolvere la URN

          +
          + +

          Ehi, non ci si deve aspettare granché dalle URN su %T :)

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_WRITE_ERROR squid-5.9/errors/it/ERR_WRITE_ERROR --- squid-5.8/errors/it/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_WRITE_ERROR 2023-05-01 10:39:33.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Errore durante l'operazione di scrittura

          +
          + +

          Il sistema ha risposto: %E

          + +

          Si è verificato un errore durante la scrittura di informazioni sulla rete. Riprova più tardi.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/it/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/it/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/it/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/it/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:39:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRORE: non è possibile accedere alla URL richiesta + + +
          +

          ERRORE

          +

          Non è stato possibile accedere alla URL richiesta.

          +
          +
          + +
          +

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

          + +
          +

          Risposta di dimensione nulla

          +
          + +

          Squid non ha ricevuto dati per questa richiesta.

          + +

          L'amministratore del proxy è %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_ACCESS_DENIED squid-5.9/errors/ja/ERR_ACCESS_DENIED --- squid-5.8/errors/ja/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_ACCESS_DENIED 2023-05-01 10:39:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

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

          +
          + +

          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-5.8/errors/ja/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/ja/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/ja/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:39:33.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          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-5.8/errors/ja/ERR_AGENT_CONFIGURE squid-5.9/errors/ja/ERR_AGENT_CONFIGURE --- squid-5.8/errors/ja/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_AGENT_CONFIGURE 2023-05-01 10:39:34.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Webブラウザの設定 + + +
          +

          エラー

          +

          Webブラウザの設定

          +
          +
          + +
          +
          +

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

          +
          + +

          ご利用のブラウザを設定する方法の探し方:

          + +
          +For Firefox browsers go to: +
            +
          • ツール -> オプション -> 詳細 -> ネットワーク -> 接続設定
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • ツール -> インターネット オプション -> 接続 -> LAN の設定 -> プロキシ サーバー
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • ツール -> 設定 -> 詳細 -> ネットワーク -> プロキシサーバー
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_AGENT_WPAD squid-5.9/errors/ja/ERR_AGENT_WPAD --- squid-5.8/errors/ja/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_AGENT_WPAD 2023-05-01 10:39:34.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Webブラウザの設定 + + +
          +

          エラー

          +

          Webブラウザの設定

          +
          +
          + +
          +
          +

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

          +
          + +

          ご利用のブラウザを設定する方法の探し方:

          + +
          +For Firefox browsers go to: +
            +
          • ツール -> オプション -> 詳細 -> ネットワーク -> 接続設定
          • +
          • Select Auto-detect proxy settings for this network
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • ツール -> インターネット オプション -> 接続 -> LAN の設定 -> プロキシ サーバー
          • +
          • 自動検出の設定を選択してください。
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • ツール -> 設定 -> 詳細 -> ネットワーク -> プロキシサーバー
          • +
          • proxyの自動構成を選択してください。
          • +
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/ja/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/ja/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:39:34.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +エラー: キャッシュへのアクセスを拒否されました。 + + +
          +

          エラー

          +

          キャッシュへのアクセスを拒否されました.

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          キャッシュへのアクセスを拒否されました.

          +
          + +

          申し訳ありませんが、あなた自身を認証するまで、このキャッシュは %U の要求を許可しません。

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/ja/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/ja/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:39:34.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +エラー: キャッシュマネージャへのアクセスを拒否されました。 + + +
          +

          エラー

          +

          キャッシュマネージャへのアクセスを拒否されました.

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          キャッシュマネージャへのアクセスを拒否されました.

          +
          + +

          申し訳ありませんが、あなた自身を認証するまで、このキャッシュマネージャは %U の要求を許可しません。

          + +

          あなた自身の認証が困難な場合は、キャッシュの管理者に連絡してください。または、あなた自身が管理者なら、キャッシュマネージャ・インターフェイスのSquidの文書を読んで、キャッシュのログにある詳細なエラーメッセージを確認してください。

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_CANNOT_FORWARD squid-5.9/errors/ja/ERR_CANNOT_FORWARD --- squid-5.8/errors/ja/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_CANNOT_FORWARD 2023-05-01 10:39:34.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          現在要求を送信できません。

          +
          + +

          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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_CONFLICT_HOST squid-5.9/errors/ja/ERR_CONFLICT_HOST --- squid-5.8/errors/ja/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_CONFLICT_HOST 2023-05-01 10:39:35.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_CONNECT_FAIL squid-5.9/errors/ja/ERR_CONNECT_FAIL --- squid-5.8/errors/ja/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_CONNECT_FAIL 2023-05-01 10:39:35.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          %I に接続できませんでした。

          +
          + +

          システムが以下のエラーを返しました: %E

          + +

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

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_DIR_LISTING squid-5.9/errors/ja/ERR_DIR_LISTING --- squid-5.8/errors/ja/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_DIR_LISTING 2023-05-01 10:39:35.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +ディレクトリ: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          ディレクトリの内容:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          親のディレクトリ (ルート・ディレクトリ)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_DNS_FAIL squid-5.9/errors/ja/ERR_DNS_FAIL --- squid-5.8/errors/ja/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_DNS_FAIL 2023-05-01 10:39:35.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          ホスト名 %H の IPアドレスがわかりません。

          +
          + +

          DNSサーバの応答:

          +
          +
          %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-5.8/errors/ja/ERR_ESI squid-5.9/errors/ja/ERR_ESI --- squid-5.8/errors/ja/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_ESI 2023-05-01 10:39:35.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          ESIの処理に失敗しました。

          +
          + +

          ESI処理からの応答:

          +
          +
          %Z
          +
          + +

          これはESIのテンプレートの処理を代理サーバで行えなかったことを意味します。このエラーはサイトの管理者(webmaster)に報告してください。

          + +

          Your webmaster is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_FORWARDING_DENIED squid-5.9/errors/ja/ERR_FORWARDING_DENIED --- squid-5.8/errors/ja/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_FORWARDING_DENIED 2023-05-01 10:39:35.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          転送を拒否されました。

          +
          + +

          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-5.8/errors/ja/ERR_FTP_DISABLED squid-5.9/errors/ja/ERR_FTP_DISABLED --- squid-5.8/errors/ja/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_FTP_DISABLED 2023-05-01 10:39:36.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          FTPは無効です。

          +
          + +

          このキャッシュは FTP をサポートしていません.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_FTP_FAILURE squid-5.9/errors/ja/ERR_FTP_FAILURE --- squid-5.8/errors/ja/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_FTP_FAILURE 2023-05-01 10:39:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          以下のURLから情報を取得しようとしている間に、FTPでプロトコル上のエラーが発生しました: %U

          + +

          Squidは以下のFTPコマンドを送りました:

          +
          +
          %f
          +
          + +

          サーバの応答:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_FTP_FORBIDDEN squid-5.9/errors/ja/ERR_FTP_FORBIDDEN --- squid-5.8/errors/ja/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_FTP_FORBIDDEN 2023-05-01 10:39:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          以下のURLから情報の取得しようとしている間に、FTPの認証に失敗しました: %U

          + +

          Squidは以下のFTPコマンドを送りました:

          +
          +
          %f
          +
          + +

          サーバの応答:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_FTP_NOT_FOUND squid-5.9/errors/ja/ERR_FTP_NOT_FOUND --- squid-5.8/errors/ja/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_FTP_NOT_FOUND 2023-05-01 10:39:36.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          以下のURLを取得できませんでした: %U

          + +

          Squidは以下のFTPコマンドを送りました:

          +
          +
          %f
          +
          + +

          サーバの応答:

          +
          +
          %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-5.8/errors/ja/ERR_FTP_PUT_CREATED squid-5.9/errors/ja/ERR_FTP_PUT_CREATED --- squid-5.8/errors/ja/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_FTP_PUT_CREATED 2023-05-01 10:39:36.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          操作に成功

          +

          ファイルを作成しました。

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_FTP_PUT_ERROR squid-5.9/errors/ja/ERR_FTP_PUT_ERROR --- squid-5.8/errors/ja/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_FTP_PUT_ERROR 2023-05-01 10:39:37.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +エラー: FTPでのアップロードに失敗しました。 + + +
          +

          エラー

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          以下のURLから情報を取得しようとしている間に、FTPでプロトコル上のエラーが発生しました: %U

          + +

          Squidは以下のFTPコマンドを送りました:

          +
          +
          %f
          +
          + +

          サーバの応答:

          +
          +
          %F
          +
          + +

          これはFTPサーバにアクセス権がないか、ファイルを保存する領域が足りなかったことを意味しています。パス、アクセス権、ディスクの空き容量を確認して、再び試してください。

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_FTP_PUT_MODIFIED squid-5.9/errors/ja/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/ja/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_FTP_PUT_MODIFIED 2023-05-01 10:39:37.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          操作に成功

          +

          ファイルを更新しました。

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_FTP_UNAVAILABLE squid-5.9/errors/ja/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/ja/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_FTP_UNAVAILABLE 2023-05-01 10:39:37.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          以下のURLを取得しようとしましたが、FTPサーバの負荷が高すぎました: %U

          + +

          Squidは以下のFTPコマンドを送りました:

          + +
          +
          %f
          +
          + +

          サーバの応答:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_GATEWAY_FAILURE squid-5.9/errors/ja/ERR_GATEWAY_FAILURE --- squid-5.8/errors/ja/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_GATEWAY_FAILURE 2023-05-01 10:39:37.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          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-5.8/errors/ja/ERR_ICAP_FAILURE squid-5.9/errors/ja/ERR_ICAP_FAILURE --- squid-5.8/errors/ja/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_ICAP_FAILURE 2023-05-01 10:39:37.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          ICAPのプロトコル・エラーです。

          +
          + +

          システムが以下のエラーを返しました: %E

          + +

          これはICAPの通信で何か失敗した面があったことを意味しています。

          + +

          考えられる問題:

          +
            +
          • ICAPサーバに到達できません。

          • +
          • ICAPサーバから不正な応答がありました。

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_INVALID_REQ squid-5.9/errors/ja/ERR_INVALID_REQ --- squid-5.8/errors/ja/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_INVALID_REQ 2023-05-01 10:39:37.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          不正な要求のエラーが以下のリクエストを処理しようとしている間に発生しました:

          + +
          +
          %R
          +
          + +

          考えられる問題:

          +
            +
          • リクエスト・メソッドが欠けているか、不明なメソッドです。

          • +
          • URLがありません。

          • +
          • HTTPの識別子(HTTP/1.0)がありません。

          • +
          • 要求が大きすぎます。

          • +
          • Content-Lengthヘッダが、POSTまたはPUTの要求に含まれていません。

          • +
          • ホスト名に不正な文字が含まれています: アンダースコア(下線)は使えません。

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

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_INVALID_RESP squid-5.9/errors/ja/ERR_INVALID_RESP --- squid-5.8/errors/ja/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_INVALID_RESP 2023-05-01 10:39:38.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          不正な応答のエラーが以下のリクエストの処理中に発生しました:

          + +
          +
          %R
          +
          + +

          接続したサーバからのHTTP応答メッセージが解釈できないか、不正な形式です。サイトの運営担当者に連絡してください。

          + +

          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-5.8/errors/ja/ERR_INVALID_URL squid-5.9/errors/ja/ERR_INVALID_URL --- squid-5.8/errors/ja/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_INVALID_URL 2023-05-01 10:39:38.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          不正なURL

          +
          + +

          指定されたURLに正しくない部分があります。

          + +

          考えられる問題:

          +
            +
          • (http://または同類の)アクセス・プロトコルが抜けているか不正です。

          • +
          • ホスト名がありません。

          • +
          • 不正な二重のエスケープがURLパスに含まれています。

          • +
          • ホスト名に不正な文字が含まれています: アンダースコア(下線)は使えません。

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_LIFETIME_EXP squid-5.9/errors/ja/ERR_LIFETIME_EXP --- squid-5.8/errors/ja/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_LIFETIME_EXP 2023-05-01 10:39:38.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          接続の有効期間が切れました。

          +
          + +

          最大の接続の有効時間が過ぎたため、Squidは要求を終了しました。

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_NO_RELAY squid-5.9/errors/ja/ERR_NO_RELAY --- squid-5.8/errors/ja/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_NO_RELAY 2023-05-01 10:39:38.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          Waisの中継先が指定されていません。

          +
          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/ja/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/ja/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:39:38.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          only-if-cachedを指定されていましたが、有効な文書はキャッシュに存在していませんでした。

          +
          + +

          キャッシュへの only-if-cached つきリクエストがありましたが,この文書はキャッシュに存在していないか,あるいはすでにキャッシュにはあるが(only-if-cached によって禁止されている)この文書が更新されているかどうかの再確認が必要です.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/error-details.txt squid-5.9/errors/ja/error-details.txt --- squid-5.8/errors/ja/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/error-details.txt 2023-05-01 10:39:41.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/ja/ERR_PRECONDITION_FAILED squid-5.9/errors/ja/ERR_PRECONDITION_FAILED --- squid-5.8/errors/ja/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_PRECONDITION_FAILED 2023-05-01 10:39:38.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          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-5.8/errors/ja/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/ja/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/ja/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:39:39.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_READ_ERROR squid-5.9/errors/ja/ERR_READ_ERROR --- squid-5.8/errors/ja/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_READ_ERROR 2023-05-01 10:39:39.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          読み込みエラー

          +
          + +

          システムが以下のエラーを返しました: %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-5.8/errors/ja/ERR_READ_TIMEOUT squid-5.9/errors/ja/ERR_READ_TIMEOUT --- squid-5.8/errors/ja/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_READ_TIMEOUT 2023-05-01 10:39:39.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          読み込みタイムアウト

          +
          + +

          システムが以下のエラーを返しました: %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-5.8/errors/ja/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/ja/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/ja/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:39:39.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          %Iに安全な接続を確立できませんでした。

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          このプロキシーと接続先のホストは互いに受け入れられる、あなたの要求を扱うためのセキュリティの設定を得ることができませんでした。接続先のホストが安全な接続をサポートしていないか、プロキシーは接続先ホストが要求する証明書を満たせなかったといったことが考えられます.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_SHUTTING_DOWN squid-5.9/errors/ja/ERR_SHUTTING_DOWN --- squid-5.8/errors/ja/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_SHUTTING_DOWN 2023-05-01 10:39:39.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          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-5.8/errors/ja/ERR_SOCKET_FAILURE squid-5.9/errors/ja/ERR_SOCKET_FAILURE --- squid-5.8/errors/ja/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_SOCKET_FAILURE 2023-05-01 10:39:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          ソケット作成に失敗

          +
          + +

          システムが以下のエラーを返しました: %E

          + +

          おそらく過大な負荷のため、SquidはTCPソケットを作成できませんでした。再度リクエストしてみてください。

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_TOO_BIG squid-5.9/errors/ja/ERR_TOO_BIG --- squid-5.8/errors/ja/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_TOO_BIG 2023-05-01 10:39:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          要求か応答が大きすぎます。

          +
          + +

          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.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_UNSUP_HTTPVERSION squid-5.9/errors/ja/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/ja/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_UNSUP_HTTPVERSION 2023-05-01 10:39:40.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          サポートしていないHTTPのバージョンです。

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          サポートしていないHTTPのバージョンです。

          +
          + +

          使用しようとされているHTTPのバージョンをSquidは受け付けません。

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_UNSUP_REQ squid-5.9/errors/ja/ERR_UNSUP_REQ --- squid-5.8/errors/ja/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_UNSUP_REQ 2023-05-01 10:39:40.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          サポートしていないリクエストメソッドとプロトコルです。

          +
          + +

          Squidはすべてのアクセス・プロトコルに対して、すべてのリクエストメソッドをサポートしているわけではありません。例えば、POSTをGopherのリクエストで行うことはできません。

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_URN_RESOLVE squid-5.9/errors/ja/ERR_URN_RESOLVE --- squid-5.8/errors/ja/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_URN_RESOLVE 2023-05-01 10:39:40.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          エラー

          +

          要求されたURNのURLを取得できませんでした。

          +
          +
          + +
          +

          URN: %U の取得中に以下のエラーが発生しました。

          + +
          +

          URN を解決できませんでした。

          +
          + +

          やあ、%Tの時点でURNには多くを期待しないでください。:)

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_WRITE_ERROR squid-5.9/errors/ja/ERR_WRITE_ERROR --- squid-5.8/errors/ja/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_WRITE_ERROR 2023-05-01 10:39:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          書き込み中にエラーが発生しました。

          +
          + +

          システムが以下のエラーを返しました: %E

          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ja/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/ja/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/ja/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ja/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:39:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +エラー: 要求されたURLからデータを取り出せませんでした。 + + +
          +

          エラー

          +

          指定された URL を取得できませんでした

          +
          +
          + +
          +

          URL: %U の取得中に以下のエラーが発生しました。

          + +
          +

          中身がありません.

          +
          + +

          この要求に対して、Squidは何もデータを受け取りませんでした。

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_ACCESS_DENIED squid-5.9/errors/ka/ERR_ACCESS_DENIED --- squid-5.8/errors/ka/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_ACCESS_DENIED 2023-05-01 10:39:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          წვდომა აკრძალულია.

          +
          + +

          წვდომის კონფიგურაცია ამ მომენტში კრძალავს თქვენი მოთხოვნის შესრულებას. თუ თვლით, რომ ეს შეცდომით მოხდა, გთხოვთ დაიკავშირდეთ თქვენს სერვისის მომწოდებელს.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/ka/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/ka/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:39:41.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_AGENT_CONFIGURE squid-5.9/errors/ka/ERR_AGENT_CONFIGURE --- squid-5.8/errors/ka/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_AGENT_CONFIGURE 2023-05-01 10:39:41.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          შეცდომა

          +

          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.
          • +
          +
          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_AGENT_WPAD squid-5.9/errors/ka/ERR_AGENT_WPAD --- squid-5.8/errors/ka/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_AGENT_WPAD 2023-05-01 10:39:41.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          შეცდომა

          +

          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
          • +
          +
          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/ka/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/ka/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:39:42.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +შეცდომა: კეშთან წვდომა აკრძალულია + + +
          +

          შეცდომა

          +

          კეშთან წვდომა აკრძალულია.

          +
          +
          + +
          +

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

          + +
          +

          კეშთან წვდომა აკრძალულია.

          +
          + +

          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-5.8/errors/ka/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/ka/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/ka/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:39:42.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +შეცდომა: კეშის სამართავ ინტერფეისზე წვდომა აკრძალულია + + +
          +

          შეცდომა

          +

          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-5.8/errors/ka/ERR_CANNOT_FORWARD squid-5.9/errors/ka/ERR_CANNOT_FORWARD --- squid-5.8/errors/ka/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_CANNOT_FORWARD 2023-05-01 10:39:42.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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:

          +
            +
          • 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.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_CONFLICT_HOST squid-5.9/errors/ka/ERR_CONFLICT_HOST --- squid-5.8/errors/ka/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_CONFLICT_HOST 2023-05-01 10:39:42.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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:

          +
            +
          • 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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_CONNECT_FAIL squid-5.9/errors/ka/ERR_CONNECT_FAIL --- squid-5.8/errors/ka/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_CONNECT_FAIL 2023-05-01 10:39:42.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          %I-თან დაკავირება ვერ მოხერხდა.

          +
          + +

          სისტემამ დააბრუნა: %E

          + +

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

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_DIR_LISTING squid-5.9/errors/ka/ERR_DIR_LISTING --- squid-5.8/errors/ka/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_DIR_LISTING 2023-05-01 10:39:42.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +დირექტორია: %U + + +
          +

          დირექტორია: %U/

          +
          +
          + +
          +

          დირექტორიის შიგთავსი:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          მშობელი დირექოტორია (სათაო დირექტორია)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_DNS_FAIL squid-5.9/errors/ka/ERR_DNS_FAIL --- squid-5.8/errors/ka/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_DNS_FAIL 2023-05-01 10:39:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          Unable to determine IP address from host name %H

          +
          + +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_ESI squid-5.9/errors/ka/ERR_ESI --- squid-5.8/errors/ka/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_ESI 2023-05-01 10:39:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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-5.8/errors/ka/ERR_FORWARDING_DENIED squid-5.9/errors/ka/ERR_FORWARDING_DENIED --- squid-5.8/errors/ka/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_FORWARDING_DENIED 2023-05-01 10:39:43.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_FTP_DISABLED squid-5.9/errors/ka/ERR_FTP_DISABLED --- squid-5.8/errors/ka/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_FTP_DISABLED 2023-05-01 10:39:43.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          FTP გათიშულია

          +
          + +

          This cache does not support FTP.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_FTP_FAILURE squid-5.9/errors/ka/ERR_FTP_FAILURE --- squid-5.8/errors/ka/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_FTP_FAILURE 2023-05-01 10:39:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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
          +
          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_FTP_FORBIDDEN squid-5.9/errors/ka/ERR_FTP_FORBIDDEN --- squid-5.8/errors/ka/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_FTP_FORBIDDEN 2023-05-01 10:39:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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
          +
          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_FTP_NOT_FOUND squid-5.9/errors/ka/ERR_FTP_NOT_FOUND --- squid-5.8/errors/ka/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_FTP_NOT_FOUND 2023-05-01 10:39:44.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა: %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.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_FTP_PUT_CREATED squid-5.9/errors/ka/ERR_FTP_PUT_CREATED --- squid-5.8/errors/ka/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_FTP_PUT_CREATED 2023-05-01 10:39:44.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT წარმატებით დასრულდა. + + +
          +

          ოპერაცია წარმატებით დასრულდა

          +

          ფაილი შეიქმნა

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_FTP_PUT_ERROR squid-5.9/errors/ka/ERR_FTP_PUT_ERROR --- squid-5.8/errors/ka/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_FTP_PUT_ERROR 2023-05-01 10:39:44.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +შეცდომა: FTP-ით ატვირთვა ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          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.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_FTP_PUT_MODIFIED squid-5.9/errors/ka/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/ka/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_FTP_PUT_MODIFIED 2023-05-01 10:39:44.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT წარმატებით დასრულდა. + + +
          +

          ოპერაცია წარმატებით დასრულდა

          +

          ფაილი განახლდა

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_FTP_UNAVAILABLE squid-5.9/errors/ka/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/ka/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_FTP_UNAVAILABLE 2023-05-01 10:39:44.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +

          Squid sent the following FTP command:

          + +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_GATEWAY_FAILURE squid-5.9/errors/ka/ERR_GATEWAY_FAILURE --- squid-5.8/errors/ka/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_GATEWAY_FAILURE 2023-05-01 10:39:45.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_ICAP_FAILURE squid-5.9/errors/ka/ERR_ICAP_FAILURE --- squid-5.8/errors/ka/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_ICAP_FAILURE 2023-05-01 10:39:45.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          ICAP ოქმის შეცდომა.

          +
          + +

          სისტემამ დააბრუნა: %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.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_INVALID_REQ squid-5.9/errors/ka/ERR_INVALID_REQ --- squid-5.8/errors/ka/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_INVALID_REQ 2023-05-01 10:39:45.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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).

          • +
          • მოთხოვნა ძალიან დიდია.

          • +
          • 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.

          • +
          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_INVALID_RESP squid-5.9/errors/ka/ERR_INVALID_RESP --- squid-5.8/errors/ka/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_INVALID_RESP 2023-05-01 10:39:45.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_INVALID_URL squid-5.9/errors/ka/ERR_INVALID_URL --- squid-5.8/errors/ka/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_INVALID_URL 2023-05-01 10:39:45.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          არასწორი 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.

          • +
          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_LIFETIME_EXP squid-5.9/errors/ka/ERR_LIFETIME_EXP --- squid-5.8/errors/ka/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_LIFETIME_EXP 2023-05-01 10:39:45.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_NO_RELAY squid-5.9/errors/ka/ERR_NO_RELAY --- squid-5.8/errors/ka/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_NO_RELAY 2023-05-01 10:39:46.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/ka/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/ka/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:39:46.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/error-details.txt squid-5.9/errors/ka/error-details.txt --- squid-5.8/errors/ka/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/error-details.txt 2023-05-01 10:39:48.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/ka/ERR_PRECONDITION_FAILED squid-5.9/errors/ka/ERR_PRECONDITION_FAILED --- squid-5.8/errors/ka/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_PRECONDITION_FAILED 2023-05-01 10:39:46.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          Precondition Failed.

          +
          + +

          ეს ნიშნავს, რომ:

          +
          +

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

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/ka/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/ka/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:39:46.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_READ_ERROR squid-5.9/errors/ka/ERR_READ_ERROR --- squid-5.8/errors/ka/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_READ_ERROR 2023-05-01 10:39:46.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          წაკითხვის შეცდომა

          +
          + +

          სისტემამ დააბრუნა: %E

          + +

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

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_READ_TIMEOUT squid-5.9/errors/ka/ERR_READ_TIMEOUT --- squid-5.8/errors/ka/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_READ_TIMEOUT 2023-05-01 10:39:46.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          Read Timeout

          +
          + +

          სისტემამ დააბრუნა: %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.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/ka/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/ka/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:39:47.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          %I-თან უსაფრთხო კავშირის დამყარება ვერ მოხერხდა

          +
          + +
          +

          სისტემამ დააბრუნა:

          +
          +
          %E (TLS კოდი: %x)
          +

          %D

          +
          +
          + +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_SHUTTING_DOWN squid-5.9/errors/ka/ERR_SHUTTING_DOWN --- squid-5.8/errors/ka/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_SHUTTING_DOWN 2023-05-01 10:39:47.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_SOCKET_FAILURE squid-5.9/errors/ka/ERR_SOCKET_FAILURE --- squid-5.8/errors/ka/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_SOCKET_FAILURE 2023-05-01 10:39:47.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          Socket Failure

          +
          + +

          სისტემამ დააბრუნა: %E

          + +

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

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_TOO_BIG squid-5.9/errors/ka/ERR_TOO_BIG --- squid-5.8/errors/ka/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_TOO_BIG 2023-05-01 10:39:47.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_UNSUP_HTTPVERSION squid-5.9/errors/ka/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/ka/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_UNSUP_HTTPVERSION 2023-05-01 10:39:47.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_UNSUP_REQ squid-5.9/errors/ka/ERR_UNSUP_REQ --- squid-5.8/errors/ka/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_UNSUP_REQ 2023-05-01 10:39:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

          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.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_URN_RESOLVE squid-5.9/errors/ka/ERR_URN_RESOLVE --- squid-5.8/errors/ka/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_URN_RESOLVE 2023-05-01 10:39:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          შეცდომა

          +

          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 :)

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_WRITE_ERROR squid-5.9/errors/ka/ERR_WRITE_ERROR --- squid-5.8/errors/ka/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_WRITE_ERROR 2023-05-01 10:39:48.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          ჩაწერის შეცდომა

          +
          + +

          სისტემამ დააბრუნა: %E

          + +

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

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ka/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/ka/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/ka/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ka/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:39:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +შეცდომა: მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა + + +
          +

          შეცდომა

          +

          მოთხოვნილი რესურსის გამოძახება ვერ მოხერხდა

          +
          +
          + +
          +

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

          + +
          +

          Zero Sized Reply

          +
          + +

          Squid did not receive any data for this request.

          + +

          თქვენი კეშის ადმინისტრატორია %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_ACCESS_DENIED squid-5.9/errors/ko/ERR_ACCESS_DENIED --- squid-5.8/errors/ko/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_ACCESS_DENIED 2023-05-01 10:39:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          서버 이용 요구가 거절되었습니다.

          +
          + +

          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-5.8/errors/ko/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/ko/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/ko/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:39:48.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

          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-5.8/errors/ko/ERR_AGENT_CONFIGURE squid-5.9/errors/ko/ERR_AGENT_CONFIGURE --- squid-5.8/errors/ko/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_AGENT_CONFIGURE 2023-05-01 10:39:49.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          에러

          +

          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-5.8/errors/ko/ERR_AGENT_WPAD squid-5.9/errors/ko/ERR_AGENT_WPAD --- squid-5.8/errors/ko/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_AGENT_WPAD 2023-05-01 10:39:49.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          에러

          +

          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-5.8/errors/ko/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/ko/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/ko/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:39:49.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: Cache Access Denied + + +
          +

          에러

          +

          캐쉬 이용 요청이 거절되었습니다.

          +
          +
          + +
          +

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

          + +
          +

          캐쉬 이용 요청이 거절되었습니다.

          +
          + +

          죄송합니다. 이 캐쉬를 통해 다음 서비스를 받기 위해서는 %U 인증절차를 거쳐야 합니다.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/ko/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/ko/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:39:49.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: Cache Manager Access Denied + + +
          +

          에러

          +

          캐쉬 매니저 이용 요청이 거절되었습니다.

          +
          +
          + +
          +

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

          + +
          +

          캐쉬 매니저 이용 요청이 거절되었습니다.

          +
          + +

          죄송합니다. 이 캐쉬 매니저를 통해 다음 서비스를 받기 위해서는 %U 인증절차를 거쳐야 합니다.

          + +

          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-5.8/errors/ko/ERR_CANNOT_FORWARD squid-5.9/errors/ko/ERR_CANNOT_FORWARD --- squid-5.8/errors/ko/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_CANNOT_FORWARD 2023-05-01 10:39:49.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          현재로서는 이 요청을 진행 시킬 수 없습니다.

          +
          + +

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

          + +

          Some possible problems are:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_CONFLICT_HOST squid-5.9/errors/ko/ERR_CONFLICT_HOST --- squid-5.8/errors/ko/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_CONFLICT_HOST 2023-05-01 10:39:50.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_CONNECT_FAIL squid-5.9/errors/ko/ERR_CONNECT_FAIL --- squid-5.8/errors/ko/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_CONNECT_FAIL 2023-05-01 10:39:50.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          Connection to %I failed.

          +
          + +

          시스템은 아래와 같은 메시지를 보내왔습니다: %E

          + +

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

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_DIR_LISTING squid-5.9/errors/ko/ERR_DIR_LISTING --- squid-5.8/errors/ko/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_DIR_LISTING 2023-05-01 10:39:50.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_DNS_FAIL squid-5.9/errors/ko/ERR_DNS_FAIL --- squid-5.8/errors/ko/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_DNS_FAIL 2023-05-01 10:39:50.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

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

          +
          + +

          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-5.8/errors/ko/ERR_ESI squid-5.9/errors/ko/ERR_ESI --- squid-5.8/errors/ko/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_ESI 2023-05-01 10:39:50.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

          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-5.8/errors/ko/ERR_FORWARDING_DENIED squid-5.9/errors/ko/ERR_FORWARDING_DENIED --- squid-5.8/errors/ko/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_FORWARDING_DENIED 2023-05-01 10:39:50.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          포워딩 불가

          +
          + +

          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-5.8/errors/ko/ERR_FTP_DISABLED squid-5.9/errors/ko/ERR_FTP_DISABLED --- squid-5.8/errors/ko/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_FTP_DISABLED 2023-05-01 10:39:51.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          FTP 서비스가 불가능 합니다.

          +
          + +

          FTP 서비스가 불가능 합니다.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_FTP_FAILURE squid-5.9/errors/ko/ERR_FTP_FAILURE --- squid-5.8/errors/ko/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_FTP_FAILURE 2023-05-01 10:39:51.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

          다음 URL을 처리 하던 중 FTP 프로토콜 에러가 발생했습니다: %U

          + +

          Squid는 다음과 같은 FTP 명령어를 전송했고:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_FTP_FORBIDDEN squid-5.9/errors/ko/ERR_FTP_FORBIDDEN --- squid-5.8/errors/ko/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_FTP_FORBIDDEN 2023-05-01 10:39:51.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

          다음 URL을 처리 하던 중 FTP 인증 문제가 발생했습니다: %U

          + +

          Squid는 다음과 같은 FTP 명령어를 전송했고:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_FTP_NOT_FOUND squid-5.9/errors/ko/ERR_FTP_NOT_FOUND --- squid-5.8/errors/ko/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_FTP_NOT_FOUND 2023-05-01 10:39:51.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

          다음 URL이 처리되지 못했습니다: %U

          + +

          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-5.8/errors/ko/ERR_FTP_PUT_CREATED squid-5.9/errors/ko/ERR_FTP_PUT_CREATED --- squid-5.8/errors/ko/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_FTP_PUT_CREATED 2023-05-01 10:39:51.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          수행 완료

          +

          파일이 생성되었습니다

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_FTP_PUT_ERROR squid-5.9/errors/ko/ERR_FTP_PUT_ERROR --- squid-5.8/errors/ko/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_FTP_PUT_ERROR 2023-05-01 10:39:51.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +에러: FTP upload 실패 + + +
          +

          에러

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          다음 URL을 처리 하던 중 FTP 프로토콜 에러가 발생했습니다: %U

          + +

          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-5.8/errors/ko/ERR_FTP_PUT_MODIFIED squid-5.9/errors/ko/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/ko/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_FTP_PUT_MODIFIED 2023-05-01 10:39:52.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          수행 완료

          +

          파일이 변경되었습니다

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_FTP_UNAVAILABLE squid-5.9/errors/ko/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/ko/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_FTP_UNAVAILABLE 2023-05-01 10:39:52.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +

          Squid는 다음과 같은 FTP 명령어를 전송했고:

          + +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_GATEWAY_FAILURE squid-5.9/errors/ko/ERR_GATEWAY_FAILURE --- squid-5.8/errors/ko/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_GATEWAY_FAILURE 2023-05-01 10:39:52.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

          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-5.8/errors/ko/ERR_ICAP_FAILURE squid-5.9/errors/ko/ERR_ICAP_FAILURE --- squid-5.8/errors/ko/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_ICAP_FAILURE 2023-05-01 10:39:52.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

          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.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_INVALID_REQ squid-5.9/errors/ko/ERR_INVALID_REQ --- squid-5.8/errors/ko/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_INVALID_REQ 2023-05-01 10:39:52.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +
          %R
          +
          + +

          Some possible problems are:

          +
            +
          • Request method가 잘못되었거나 빠져 있다.

          • +
          • URL이 빠져 있다.

          • +
          • HTTP Identifier (HTTP/1.0)이 빠져 있다.

          • +
          • Request가 너무 크다.

          • +
          • POST나 PUT 요청일 경우 Content-Length가 빠져 있다.

          • +
          • 호스트네임에 잘못 된 문자가 있다; 밑줄은 허용되지 않습니다.

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

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_INVALID_RESP squid-5.9/errors/ko/ERR_INVALID_RESP --- squid-5.8/errors/ko/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_INVALID_RESP 2023-05-01 10:39:53.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 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.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_INVALID_URL squid-5.9/errors/ko/ERR_INVALID_URL --- squid-5.8/errors/ko/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_INVALID_URL 2023-05-01 10:39:53.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          잘못된 URL

          +
          + +

          Some aspect of the requested URL is incorrect.

          + +

          Some possible problems are:

          +
            +
          • 접속 프로토콜이 잘못되었거나 빠져 있다. (http:// 와 같은 방식으로 되어 있어야 합니다)

          • +
          • 호스트네임이 빠져 있다.

          • +
          • URL-Path에 double-escape이 있다.

          • +
          • 호스트네임에 잘못 된 문자가 있다; 밑줄은 허용되지 않습니다.

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_LIFETIME_EXP squid-5.9/errors/ko/ERR_LIFETIME_EXP --- squid-5.8/errors/ko/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_LIFETIME_EXP 2023-05-01 10:39:53.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          접속 허용 시간이 경과되었습니다.

          +
          + +

          최대 접속 허용 시간이 경과하여 Squid로부터의 요청이 중지되었습니다.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_NO_RELAY squid-5.9/errors/ko/ERR_NO_RELAY --- squid-5.8/errors/ko/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_NO_RELAY 2023-05-01 10:39:53.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          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-5.8/errors/ko/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/ko/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/ko/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:39:53.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          캐쉬에 유효한 문서가 없고 only-if-cached 가 지정되었습니다.

          +
          + +

          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-5.8/errors/ko/error-details.txt squid-5.9/errors/ko/error-details.txt --- squid-5.8/errors/ko/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/error-details.txt 2023-05-01 10:39:56.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/ko/ERR_PRECONDITION_FAILED squid-5.9/errors/ko/ERR_PRECONDITION_FAILED --- squid-5.8/errors/ko/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_PRECONDITION_FAILED 2023-05-01 10:39:53.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/ko/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/ko/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:39:54.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_READ_ERROR squid-5.9/errors/ko/ERR_READ_ERROR --- squid-5.8/errors/ko/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_READ_ERROR 2023-05-01 10:39:54.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          읽기 에러

          +
          + +

          시스템은 아래와 같은 메시지를 보내왔습니다: %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-5.8/errors/ko/ERR_READ_TIMEOUT squid-5.9/errors/ko/ERR_READ_TIMEOUT --- squid-5.8/errors/ko/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_READ_TIMEOUT 2023-05-01 10:39:54.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          읽기 시간 초과

          +
          + +

          시스템은 아래와 같은 메시지를 보내왔습니다: %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-5.8/errors/ko/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/ko/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/ko/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:39:54.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          Failed to establish a secure connection to %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/ko/ERR_SHUTTING_DOWN squid-5.9/errors/ko/ERR_SHUTTING_DOWN --- squid-5.8/errors/ko/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_SHUTTING_DOWN 2023-05-01 10:39:54.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

          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-5.8/errors/ko/ERR_SOCKET_FAILURE squid-5.9/errors/ko/ERR_SOCKET_FAILURE --- squid-5.8/errors/ko/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_SOCKET_FAILURE 2023-05-01 10:39:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          소켓 생성 실패

          +
          + +

          시스템은 아래와 같은 메시지를 보내왔습니다: %E

          + +

          Squid가 TCP 소켓을 생성할 수 없습니다. 심한 로드로 인한 결과일 수 있습니다. 다시 시도해 주십시오.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_TOO_BIG squid-5.9/errors/ko/ERR_TOO_BIG --- squid-5.8/errors/ko/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_TOO_BIG 2023-05-01 10:39:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

          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-5.8/errors/ko/ERR_UNSUP_HTTPVERSION squid-5.9/errors/ko/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/ko/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_UNSUP_HTTPVERSION 2023-05-01 10:39:55.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          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-5.8/errors/ko/ERR_UNSUP_REQ squid-5.9/errors/ko/ERR_UNSUP_REQ --- squid-5.8/errors/ko/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_UNSUP_REQ 2023-05-01 10:39:55.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          지원되지 않는 Request Method와 프로토콜입니다.

          +
          + +

          Squid는 모든 접속 프로토콜에 대한 request method를 지원하지 않습니다. 한가지 예로, Gopher에서 POST request를 사용할 수 없습니다.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_URN_RESOLVE squid-5.9/errors/ko/ERR_URN_RESOLVE --- squid-5.8/errors/ko/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_URN_RESOLVE 2023-05-01 10:39:55.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          에러

          +

          A URL for the requested URN could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          URN을 처리할 수 없습니다.

          +
          + +

          %T의 URN에 대해 너무 많은 것을 기대하지 마세요. :)

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_WRITE_ERROR squid-5.9/errors/ko/ERR_WRITE_ERROR --- squid-5.8/errors/ko/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_WRITE_ERROR 2023-05-01 10:39:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          쓰기 에러

          +
          + +

          시스템은 아래와 같은 메시지를 보내왔습니다: %E

          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ko/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/ko/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/ko/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ko/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:39:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +에러: 요청된 URL을 가져올 수 없습니다 + + +
          +

          에러

          +

          요청된 URL을 가져올 수 없습니다.

          +
          +
          + +
          +

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

          + +
          +

          크기가 0인 응답이 돌아왔습니다.

          +
          + +

          Squid는 이 요청으로 부터 아무런 데이터도 받지 못했습니다.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_ACCESS_DENIED squid-5.9/errors/lt/ERR_ACCESS_DENIED --- squid-5.8/errors/lt/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_ACCESS_DENIED 2023-05-01 10:39:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Priėjimas draudžiamas.

          +
          + +

          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-5.8/errors/lt/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/lt/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/lt/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:39:56.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

          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-5.8/errors/lt/ERR_AGENT_CONFIGURE squid-5.9/errors/lt/ERR_AGENT_CONFIGURE --- squid-5.8/errors/lt/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_AGENT_CONFIGURE 2023-05-01 10:39:56.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          KLAIDA

          +

          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-5.8/errors/lt/ERR_AGENT_WPAD squid-5.9/errors/lt/ERR_AGENT_WPAD --- squid-5.8/errors/lt/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_AGENT_WPAD 2023-05-01 10:39:56.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          KLAIDA

          +

          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-5.8/errors/lt/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/lt/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/lt/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:39:56.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +KLAIDA: Priėjimas prie kešo uždraustas + + +
          +

          KLAIDA

          +

          Priėjimas prie kešo uždraustas.

          +
          +
          + +
          +

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

          + +
          +

          Priėjimas prie kešo uždraustas.

          +
          + +

          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-5.8/errors/lt/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/lt/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/lt/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:39:57.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +KLAIDA: Kešo menedžerio priėjimas uždraustas + + +
          +

          KLAIDA

          +

          Kešo menedžerio priėjimas uždraustas.

          +
          +
          + +
          +

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

          + +
          +

          Kešo menedžerio priėjimas uždraustas.

          +
          + +

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

          + +

          Prašome susisiekti su administratoriumi, jei jums iškilo problemos prisistatant arba, jei jūs esate administratorius, perskaitykite Squid documentaciją dėl kešo menedžerio interfeiso ir patikrinkite kešo žurnalą dėl detalesnių pranešimų apie klaidas.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_CANNOT_FORWARD squid-5.9/errors/lt/ERR_CANNOT_FORWARD --- squid-5.8/errors/lt/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_CANNOT_FORWARD 2023-05-01 10:39:57.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Šiuo metu negaliu persiųsti užklausos.

          +
          + +

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

          + +

          Some possible problems are:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_CONFLICT_HOST squid-5.9/errors/lt/ERR_CONFLICT_HOST --- squid-5.8/errors/lt/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_CONFLICT_HOST 2023-05-01 10:39:57.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_CONNECT_FAIL squid-5.9/errors/lt/ERR_CONNECT_FAIL --- squid-5.8/errors/lt/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_CONNECT_FAIL 2023-05-01 10:39:57.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Connection to %I failed.

          +
          + +

          Sistema atsakė: %E

          + +

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

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_DIR_LISTING squid-5.9/errors/lt/ERR_DIR_LISTING --- squid-5.8/errors/lt/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_DIR_LISTING 2023-05-01 10:39:57.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_DNS_FAIL squid-5.9/errors/lt/ERR_DNS_FAIL --- squid-5.8/errors/lt/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_DNS_FAIL 2023-05-01 10:39:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Neįmanoma nustatyti %H serverio IP adreso

          +
          + +

          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-5.8/errors/lt/ERR_ESI squid-5.9/errors/lt/ERR_ESI --- squid-5.8/errors/lt/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_ESI 2023-05-01 10:39:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

          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-5.8/errors/lt/ERR_FORWARDING_DENIED squid-5.9/errors/lt/ERR_FORWARDING_DENIED --- squid-5.8/errors/lt/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_FORWARDING_DENIED 2023-05-01 10:39:58.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Pervedimo komanda neleistina.

          +
          + +

          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-5.8/errors/lt/ERR_FTP_DISABLED squid-5.9/errors/lt/ERR_FTP_DISABLED --- squid-5.8/errors/lt/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_FTP_DISABLED 2023-05-01 10:39:58.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          FTP yra atjungtas

          +
          + +

          Šis proxy serveris nepalaiko FTP.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_FTP_FAILURE squid-5.9/errors/lt/ERR_FTP_FAILURE --- squid-5.8/errors/lt/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_FTP_FAILURE 2023-05-01 10:39:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

          Įvyko FTP protokolo klaida bandant atsiųsti puslapį: %U

          + +

          Squid nusiuntė šią FTP komandą:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_FTP_FORBIDDEN squid-5.9/errors/lt/ERR_FTP_FORBIDDEN --- squid-5.8/errors/lt/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_FTP_FORBIDDEN 2023-05-01 10:39:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

          Nepavyko FTP prisistatymas bandant atsiųsti puslapį: %U

          + +

          Squid nusiuntė šią FTP komandą:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_FTP_NOT_FOUND squid-5.9/errors/lt/ERR_FTP_NOT_FOUND --- squid-5.8/errors/lt/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_FTP_NOT_FOUND 2023-05-01 10:39:59.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

          The following URL could not be retrieved: %U

          + +

          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-5.8/errors/lt/ERR_FTP_PUT_CREATED squid-5.9/errors/lt/ERR_FTP_PUT_CREATED --- squid-5.8/errors/lt/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_FTP_PUT_CREATED 2023-05-01 10:39:59.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operacija buvo sėkminga

          +

          Failas sukurtas

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_FTP_PUT_ERROR squid-5.9/errors/lt/ERR_FTP_PUT_ERROR --- squid-5.8/errors/lt/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_FTP_PUT_ERROR 2023-05-01 10:39:59.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +KLAIDA: FTP uploadas nepavyko + + +
          +

          KLAIDA

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          Įvyko FTP protokolo klaida bandant atsiųsti puslapį: %U

          + +

          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-5.8/errors/lt/ERR_FTP_PUT_MODIFIED squid-5.9/errors/lt/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/lt/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_FTP_PUT_MODIFIED 2023-05-01 10:39:59.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operacija buvo sėkminga

          +

          Failas atnaujintas

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_FTP_UNAVAILABLE squid-5.9/errors/lt/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/lt/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_FTP_UNAVAILABLE 2023-05-01 10:39:59.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

          FTP serveris buvo užimtas bandant atsiųsti puslapį: %U

          + +

          Squid nusiuntė šią FTP komandą:

          + +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_GATEWAY_FAILURE squid-5.9/errors/lt/ERR_GATEWAY_FAILURE --- squid-5.8/errors/lt/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_GATEWAY_FAILURE 2023-05-01 10:40:00.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

          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-5.8/errors/lt/ERR_ICAP_FAILURE squid-5.9/errors/lt/ERR_ICAP_FAILURE --- squid-5.8/errors/lt/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_ICAP_FAILURE 2023-05-01 10:40:00.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

          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:

          +
            +
          • The ICAP server is not reachable.

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

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_INVALID_REQ squid-5.9/errors/lt/ERR_INVALID_REQ --- squid-5.8/errors/lt/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_INVALID_REQ 2023-05-01 10:40:00.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +
          %R
          +
          + +

          Some possible problems are:

          +
            +
          • Trūksta arba nežinomas užklausos metodas

          • +
          • Trūksta adreso

          • +
          • Trūksta HTTP identifikatoriaus (HTTP/1.0)

          • +
          • 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.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_INVALID_RESP squid-5.9/errors/lt/ERR_INVALID_RESP --- squid-5.8/errors/lt/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_INVALID_RESP 2023-05-01 10:40:00.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

          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-5.8/errors/lt/ERR_INVALID_URL squid-5.9/errors/lt/ERR_INVALID_URL --- squid-5.8/errors/lt/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_INVALID_URL 2023-05-01 10:40:00.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Klaidingas adresas

          +
          + +

          Some aspect of the requested URL is incorrect.

          + +

          Some possible problems are:

          +
            +
          • Trūksta arba klaidingas protokolas (turetų būti http:// ar panašus)

          • +
          • Trūksta serverio vardo

          • +
          • Neleistinas double-escape kodas adrese

          • +
          • Neleistinas simbolis serverio varde; pabraukimo simboliai yra neleistini

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_LIFETIME_EXP squid-5.9/errors/lt/ERR_LIFETIME_EXP --- squid-5.8/errors/lt/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_LIFETIME_EXP 2023-05-01 10:40:00.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Ryšio trukmės laiko pabaiga

          +
          + +

          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-5.8/errors/lt/ERR_NO_RELAY squid-5.9/errors/lt/ERR_NO_RELAY --- squid-5.8/errors/lt/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_NO_RELAY 2023-05-01 10:40:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Nėra 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-5.8/errors/lt/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/lt/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/lt/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:40:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Tinkamas dokumentas nerastas proxy serveryje ir only-if-cached komanda buvo nurodyta.

          +
          + +

          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-5.8/errors/lt/error-details.txt squid-5.9/errors/lt/error-details.txt --- squid-5.8/errors/lt/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/error-details.txt 2023-05-01 10:40:03.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/lt/ERR_PRECONDITION_FAILED squid-5.9/errors/lt/ERR_PRECONDITION_FAILED --- squid-5.8/errors/lt/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_PRECONDITION_FAILED 2023-05-01 10:40:01.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/lt/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/lt/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:40:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_READ_ERROR squid-5.9/errors/lt/ERR_READ_ERROR --- squid-5.8/errors/lt/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_READ_ERROR 2023-05-01 10:40:01.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Skaitymo klaida

          +
          + +

          Sistema atsakė: %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-5.8/errors/lt/ERR_READ_TIMEOUT squid-5.9/errors/lt/ERR_READ_TIMEOUT --- squid-5.8/errors/lt/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_READ_TIMEOUT 2023-05-01 10:40:01.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Leistino skaitymo laiko pabaiga

          +
          + +

          Sistema atsakė: %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-5.8/errors/lt/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/lt/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/lt/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:40:02.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Failed to establish a secure connection to %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/lt/ERR_SHUTTING_DOWN squid-5.9/errors/lt/ERR_SHUTTING_DOWN --- squid-5.8/errors/lt/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_SHUTTING_DOWN 2023-05-01 10:40:02.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

          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-5.8/errors/lt/ERR_SOCKET_FAILURE squid-5.9/errors/lt/ERR_SOCKET_FAILURE --- squid-5.8/errors/lt/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_SOCKET_FAILURE 2023-05-01 10:40:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Socket klaida

          +
          + +

          Sistema atsakė: %E

          + +

          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-5.8/errors/lt/ERR_TOO_BIG squid-5.9/errors/lt/ERR_TOO_BIG --- squid-5.8/errors/lt/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_TOO_BIG 2023-05-01 10:40:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Užklausa arba atsakymas yra per dideli.

          +
          + +

          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-5.8/errors/lt/ERR_UNSUP_HTTPVERSION squid-5.9/errors/lt/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/lt/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_UNSUP_HTTPVERSION 2023-05-01 10:40:02.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          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-5.8/errors/lt/ERR_UNSUP_REQ squid-5.9/errors/lt/ERR_UNSUP_REQ --- squid-5.8/errors/lt/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_UNSUP_REQ 2023-05-01 10:40:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Nepalaikomas užklausos metodas ir protokolas

          +
          + +

          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-5.8/errors/lt/ERR_URN_RESOLVE squid-5.9/errors/lt/ERR_URN_RESOLVE --- squid-5.8/errors/lt/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_URN_RESOLVE 2023-05-01 10:40:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          KLAIDA

          +

          A URL for the requested URN could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          Negaliu aptikti URN

          +
          + +

          Mielieji, siūlau daug nesitikėti iš URNų %T :)

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_WRITE_ERROR squid-5.9/errors/lt/ERR_WRITE_ERROR --- squid-5.8/errors/lt/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_WRITE_ERROR 2023-05-01 10:40:03.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Rašymo klaida

          +
          + +

          Sistema atsakė: %E

          + +

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

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lt/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/lt/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/lt/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lt/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:40:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KLAIDA: Puslapis nurodytu adresu negali būti atsiųstas + + +
          +

          KLAIDA

          +

          Puslapis nurodytu adresu negali būti atsiųstas

          +
          +
          + +
          +

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

          + +
          +

          Atsakymas nulinis

          +
          + +

          Squid negavo jokių duomenų šiai užklausai.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_ACCESS_DENIED squid-5.9/errors/lv/ERR_ACCESS_DENIED --- squid-5.8/errors/lv/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_ACCESS_DENIED 2023-05-01 10:40:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Pieeja liegta

          +
          + +

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

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/lv/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/lv/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:40:03.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          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-5.8/errors/lv/ERR_AGENT_CONFIGURE squid-5.9/errors/lv/ERR_AGENT_CONFIGURE --- squid-5.8/errors/lv/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_AGENT_CONFIGURE 2023-05-01 10:40:04.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          Kļūda

          +

          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.
          • +
          +
          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_AGENT_WPAD squid-5.9/errors/lv/ERR_AGENT_WPAD --- squid-5.8/errors/lv/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_AGENT_WPAD 2023-05-01 10:40:04.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          Kļūda

          +

          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
          • +
          +
          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/lv/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/lv/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:40:04.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +Kļūda: Kešatmiņa nav pieejama + + +
          +

          Kļūda

          +

          Kešatmiņas pieeja liegta

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Kešatmiņas pieeja liegta

          +
          + +

          Atvainojiet, Jums nav atļauts pieprasīt %U no kešatmiņas pirms neesat autentificējies.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/lv/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/lv/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:40:04.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +Kļūda: Kešatmiņas pārvaldniekam pieeja liegta + + +
          +

          Kļūda

          +

          Kešatmiņas pārvaldniekam pieeja liegta.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Kešatmiņas pārvaldniekam pieeja liegta.

          +
          + +

          Atvainojiet, Pirms Jūs neesiet autorizējies nav atļauts pieprasīt %U no kešatmiņas pārvaldnieka.

          + +

          Lūdzu sazinieties ar kešatmiņas administratoru, ja Jums ir problēmas ar autentificēšanos vai, ja Jūs esat administrators, lasiet Squid dokumentāciju kešatmiņas pārvaldnieka saskarnē, detalizētāku kļūdas aprakstu meklējiet kļūdu žurnālos.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_CANNOT_FORWARD squid-5.9/errors/lv/ERR_CANNOT_FORWARD --- squid-5.8/errors/lv/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_CANNOT_FORWARD 2023-05-01 10:40:04.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Šobrīda nav iespējams pārsūtīt šo pieprasījumu.

          +
          + +

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

          + +

          Dažas iespējamās problēmas ir:

          +
            +
          • 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.
          • +
          + +

          Jūsu kešatmiņas administrators ir %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_CONFLICT_HOST squid-5.9/errors/lv/ERR_CONFLICT_HOST --- squid-5.8/errors/lv/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_CONFLICT_HOST 2023-05-01 10:40:05.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %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.

          + +

          Dažas iespējamās problēmas ir:

          +
            +
          • 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.
          • +
          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_CONNECT_FAIL squid-5.9/errors/lv/ERR_CONNECT_FAIL --- squid-5.8/errors/lv/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_CONNECT_FAIL 2023-05-01 10:40:05.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Neveiksmīgs savienojums ar %I.

          +
          + +

          Sistēma atbildēja: %E

          + +

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

          + +

          Jūsu kešatmiņas administrators ir %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_DIR_LISTING squid-5.9/errors/lv/ERR_DIR_LISTING --- squid-5.8/errors/lv/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_DIR_LISTING 2023-05-01 10:40:05.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directorijs: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Directorija saturs:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Vecākdirektorijs (Saknes direktorijs)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_DNS_FAIL squid-5.9/errors/lv/ERR_DNS_FAIL --- squid-5.8/errors/lv/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_DNS_FAIL 2023-05-01 10:40:05.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Nevar nosakidrot IP adresi no saimniekdatora vārda%H

          +
          + +

          DNS serveris atgrieza:

          +
          +
          %z
          +
          + +

          Tas nozīmē, ka kešatmiņa nevar atrast adresē ietverto saimniekdatora vārdu. Pārbaudiet vai adrese ir korekta.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_ESI squid-5.9/errors/lv/ERR_ESI --- squid-5.8/errors/lv/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_ESI 2023-05-01 10:40:05.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Neveiksmīga ESI apstrāde.

          +
          + +

          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.

          + +

          Jūsu tīmekļa pārzinis ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_FORWARDING_DENIED squid-5.9/errors/lv/ERR_FORWARDING_DENIED --- squid-5.8/errors/lv/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_FORWARDING_DENIED 2023-05-01 10:40:05.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Pārsūtīšana aizliegta.

          +
          + +

          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.

          + +

          Jūsu kešatmiņas administrators ir %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_FTP_DISABLED squid-5.9/errors/lv/ERR_FTP_DISABLED --- squid-5.8/errors/lv/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_FTP_DISABLED 2023-05-01 10:40:06.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          FTP nav atļauts

          +
          + +

          Šī kešatmiņa neatbalsta FTP.

          + +

          Jūsu kešatmiņas administrators ir %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_FTP_FAILURE squid-5.9/errors/lv/ERR_FTP_FAILURE --- squid-5.8/errors/lv/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_FTP_FAILURE 2023-05-01 10:40:06.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Notikusi FTP protokola kļūda mēģinot atvērt vietrādi URL:%U

          + +

          Squid nosūtījis sekojošu FTP komandu:

          +
          +
          %f
          +
          + +

          Serveris atbildēja ar:

          +
          +
          %F
          +
          %g
          +
          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_FTP_FORBIDDEN squid-5.9/errors/lv/ERR_FTP_FORBIDDEN --- squid-5.8/errors/lv/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_FTP_FORBIDDEN 2023-05-01 10:40:06.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Mēģinot atvērt vietrādi URL: %U notikusi FTP autentifikācijas kļūda

          + +

          Squid nosūtījis sekojošu FTP komandu:

          +
          +
          %f
          +
          + +

          Serveris atbildēja ar:

          +
          +
          %F
          +
          %g
          +
          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_FTP_NOT_FOUND squid-5.9/errors/lv/ERR_FTP_NOT_FOUND --- squid-5.8/errors/lv/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_FTP_NOT_FOUND 2023-05-01 10:40:06.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Nevar atvērt sekojošu adresi: %U

          + +

          Squid nosūtījis sekojošu FTP komandu:

          +
          +
          %f
          +
          + +

          Serveris atbildēja ar:

          +
          +
          %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.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_FTP_PUT_CREATED squid-5.9/errors/lv/ERR_FTP_PUT_CREATED --- squid-5.8/errors/lv/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_FTP_PUT_CREATED 2023-05-01 10:40:06.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operācija veiksmīga

          +

          Datne izveidota

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_FTP_PUT_ERROR squid-5.9/errors/lv/ERR_FTP_PUT_ERROR --- squid-5.8/errors/lv/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_FTP_PUT_ERROR 2023-05-01 10:40:06.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +Kļūda: FTP augšupielāde nav atļauta + + +
          +

          Kļūda

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          Notikusi FTP protokola kļūda mēģinot atvērt vietrādi URL:%U

          + +

          Squid nosūtījis sekojošu FTP komandu:

          +
          +
          %f
          +
          + +

          Serveris atbildēja ar:

          +
          +
          %F
          +
          + +

          Tas nozīmē, ka FTP serverim nav tiesības vai vieta lai saglabātu datni. Pārbaudiet ceļu, tiesības, brīvo vietu un mēģiniet vēlreiz.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_FTP_PUT_MODIFIED squid-5.9/errors/lv/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/lv/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_FTP_PUT_MODIFIED 2023-05-01 10:40:07.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operācija veiksmīga

          +

          Datne augšupielādēta

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_FTP_UNAVAILABLE squid-5.9/errors/lv/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/lv/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_FTP_UNAVAILABLE 2023-05-01 10:40:07.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          FTP serveris ir pārslogots atverot vietrādi URL: %U

          + +

          Squid nosūtījis sekojošu FTP komandu:

          + +
          +
          %f
          +
          + +

          Serveris atbildēja ar:

          +
          +
          %F
          +
          %g
          +
          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_GATEWAY_FAILURE squid-5.9/errors/lv/ERR_GATEWAY_FAILURE --- squid-5.8/errors/lv/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_GATEWAY_FAILURE 2023-05-01 10:40:07.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %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.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_ICAP_FAILURE squid-5.9/errors/lv/ERR_ICAP_FAILURE --- squid-5.8/errors/lv/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_ICAP_FAILURE 2023-05-01 10:40:07.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          ICAP protokola kļūda.

          +
          + +

          Sistēma atbildēja: %E

          + +

          Tas nozīmē, ka ir problēmas ar ICAP komunikācijas niansēm.

          + +

          Dažas iespējamās problēmas ir:

          +
            +
          • ICAP serveris nav pieejams.

          • +
          • Saņemta nekorekta atbilde no ICAP servera

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_INVALID_REQ squid-5.9/errors/lv/ERR_INVALID_REQ --- squid-5.8/errors/lv/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_INVALID_REQ 2023-05-01 10:40:07.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Nekorekts pieprasījums notikusi kļūda mēģinot apstrādāt pieprasījumu:

          + +
          +
          %R
          +
          + +

          Dažas iespējamās problēmas ir:

          +
            +
          • Nav vai ir nezināma pieprasījuma metode.

          • +
          • Pazudis URL.

          • +
          • pietrūkst HTTP identifikators (HTTP/1.0).

          • +
          • Pieprasījums ir par lielu.

          • +
          • Content-Length missing for POST or PUT requests.

          • +
          • Neatļauts simbols adresē. Pasvītrojuma rakstzīme nav atļauta.

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

          • +
          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_INVALID_RESP squid-5.9/errors/lv/ERR_INVALID_RESP --- squid-5.8/errors/lv/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_INVALID_RESP 2023-05-01 10:40:08.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Nekorekta atbilde notikusi kļūda mēģinot apstrādāt pieprasījumu:

          + +
          +
          %R
          +
          + +

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

          + +

          Ja nepieciešams, Jūsu kešatmiņas administrators Jums var precīzāk izklāstīt problēmas detaļas.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_INVALID_URL squid-5.9/errors/lv/ERR_INVALID_URL --- squid-5.8/errors/lv/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_INVALID_URL 2023-05-01 10:40:08.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Nepareizs URL

          +
          + +

          dažas nianses pieprasītajā adresē ir nekorektas.

          + +

          Dažas iespējamās problēmas ir:

          +
            +
          • Nav vai ir nekorekts pieejas protokols (jābūt http:// vai kam līdzīgam)

          • +
          • Nav saimniekdatora vārda

          • +
          • Adresē ir divas atsoļa rakstzīmes, kas ir aizliegtas

          • +
          • Neatļauts simbols adresē. Pasvītrojuma rakstzīme nav atļauta.

          • +
          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_LIFETIME_EXP squid-5.9/errors/lv/ERR_LIFETIME_EXP --- squid-5.8/errors/lv/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_LIFETIME_EXP 2023-05-01 10:40:08.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Savienojuma sesija beigusies

          +
          + +

          Squid ir pārtraucis pieprasījumu, jo ir beigusies savienojuma sesija.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_NO_RELAY squid-5.9/errors/lv/ERR_NO_RELAY --- squid-5.8/errors/lv/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_NO_RELAY 2023-05-01 10:40:08.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Nav WAIS retranslācija

          +
          + +

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

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/lv/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/lv/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:40:08.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Kešatmiņā nav atrasts derīgs dokuments un tiek piemērota direktīva only-if-cached .

          +
          + +

          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.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/error-details.txt squid-5.9/errors/lv/error-details.txt --- squid-5.8/errors/lv/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/error-details.txt 2023-05-01 10:40:11.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/lv/ERR_PRECONDITION_FAILED squid-5.9/errors/lv/ERR_PRECONDITION_FAILED --- squid-5.8/errors/lv/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_PRECONDITION_FAILED 2023-05-01 10:40:08.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %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-5.8/errors/lv/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/lv/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/lv/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:40:09.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_READ_ERROR squid-5.9/errors/lv/ERR_READ_ERROR --- squid-5.8/errors/lv/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_READ_ERROR 2023-05-01 10:40:09.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Lasīšanas kļūda

          +
          + +

          Sistēma atbildēja: %E

          + +

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

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_READ_TIMEOUT squid-5.9/errors/lv/ERR_READ_TIMEOUT --- squid-5.8/errors/lv/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_READ_TIMEOUT 2023-05-01 10:40:09.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Lasīšanas noildze

          +
          + +

          Sistēma atbildēja: %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.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/lv/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/lv/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:40:09.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Neizdevās izveidot drošu savienojumu ar %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_SHUTTING_DOWN squid-5.9/errors/lv/ERR_SHUTTING_DOWN --- squid-5.8/errors/lv/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_SHUTTING_DOWN 2023-05-01 10:40:09.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %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.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_SOCKET_FAILURE squid-5.9/errors/lv/ERR_SOCKET_FAILURE --- squid-5.8/errors/lv/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_SOCKET_FAILURE 2023-05-01 10:40:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Savienojuma kļūda

          +
          + +

          Sistēma atbildēja: %E

          + +

          Squid nevar izveidot TCP soketu, iespējams dēļ lielās slodzes. Lūdzu atkārtojiet Jūsu pieprasījumu.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_TOO_BIG squid-5.9/errors/lv/ERR_TOO_BIG --- squid-5.8/errors/lv/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_TOO_BIG 2023-05-01 10:40:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Pieprasījums vai atbilde ir par lielu.

          +
          + +

          Ja Jūs veiciet POST vai PUT pieprasījumu, tad vienums, kuru Jūs mēģiniet augšupieladēt ir par lielu.

          +

          Ja Jūs veiciet GET pieprasījumu, tad vienums, kuru Jūs mēģiniet lejupielādēt ir par lielu.

          +

          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-5.8/errors/lv/ERR_UNSUP_HTTPVERSION squid-5.9/errors/lv/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/lv/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_UNSUP_HTTPVERSION 2023-05-01 10:40:10.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Neatbalstīta HTTP versija

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Neatbalstīta HTTP versija

          +
          + +

          Šis Squid neatbalsta HTTP versiju, kuru Jūs mēģiniet lietot.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_UNSUP_REQ squid-5.9/errors/lv/ERR_UNSUP_REQ --- squid-5.8/errors/lv/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_UNSUP_REQ 2023-05-01 10:40:10.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Neatbalstīta pieprasījuma metode un protokols

          +
          + +

          Squid neatbalsta visas pieprasījuma metodes visiem protokoliem. Piemēram, Jūs nevarat veikt POST pieprasījumu izmantojot Gopher protokolu.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_URN_RESOLVE squid-5.9/errors/lv/ERR_URN_RESOLVE --- squid-5.8/errors/lv/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_URN_RESOLVE 2023-05-01 10:40:10.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          Kļūda

          +

          A URL for the requested URN could not be retrieved

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Cannot Resolve URN

          +
          + +

          Hi, neiaizraujies par daudz ar %T :)

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_WRITE_ERROR squid-5.9/errors/lv/ERR_WRITE_ERROR --- squid-5.8/errors/lv/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_WRITE_ERROR 2023-05-01 10:40:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Rakstīšanas kļūda

          +
          + +

          Sistēma atbildēja: %E

          + +

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

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/lv/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/lv/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/lv/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/lv/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:40:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +KĻŪDA: Pieprasītā adrese nav atrodama + + +
          +

          Kļūda

          +

          Nevar atvērt pieprasīto adresi.

          +
          +
          + +
          +

          Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

          + +
          +

          Nulles izmēra atbilde

          +
          + +

          Squid nav saņēmis nekādus datus šim pieprasījumam.

          + +

          Jūsu kešatmiņas administrators ir %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_ACCESS_DENIED squid-5.9/errors/ms/ERR_ACCESS_DENIED --- squid-5.8/errors/ms/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_ACCESS_DENIED 2023-05-01 10:40:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          Akses Disekat

          +
          + +

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

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/ms/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/ms/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:40:11.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_AGENT_CONFIGURE squid-5.9/errors/ms/ERR_AGENT_CONFIGURE --- squid-5.8/errors/ms/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_AGENT_CONFIGURE 2023-05-01 10:40:11.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          RALAT

          +

          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.
          • +
          +
          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_AGENT_WPAD squid-5.9/errors/ms/ERR_AGENT_WPAD --- squid-5.8/errors/ms/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_AGENT_WPAD 2023-05-01 10:40:11.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          RALAT

          +

          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
          • +
          +
          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/ms/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/ms/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:40:11.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +RALAT: Akses ke Cache Disekat + + +
          +

          RALAT

          +

          Akses ke Cache disekat

          +
          +
          + +
          +

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

          + +
          +

          Akses ke Cache disekat

          +
          + +

          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-5.8/errors/ms/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/ms/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/ms/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:40:12.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +RALAT: Akses ke Pengurus Cache Disekat + + +
          +

          RALAT

          +

          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-5.8/errors/ms/ERR_CANNOT_FORWARD squid-5.9/errors/ms/ERR_CANNOT_FORWARD --- squid-5.8/errors/ms/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_CANNOT_FORWARD 2023-05-01 10:40:12.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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:

          +
            +
          • 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.
          • +
          + +

          Pengurus Proxy anda ialah %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_CONFLICT_HOST squid-5.9/errors/ms/ERR_CONFLICT_HOST --- squid-5.8/errors/ms/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_CONFLICT_HOST 2023-05-01 10:40:12.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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:

          +
            +
          • 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.
          • +
          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_CONNECT_FAIL squid-5.9/errors/ms/ERR_CONNECT_FAIL --- squid-5.8/errors/ms/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_CONNECT_FAIL 2023-05-01 10:40:12.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          Sambungan ke %I gagal.

          +
          + +

          The system returned: %E

          + +

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

          + +

          Pengurus Proxy anda ialah %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_DIR_LISTING squid-5.9/errors/ms/ERR_DIR_LISTING --- squid-5.8/errors/ms/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_DIR_LISTING 2023-05-01 10:40:12.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Direktori: %U + + +
          +

          Direktori: %U/

          +
          +
          + +
          +

          Kandungan direktori

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Direktori Utama (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_DNS_FAIL squid-5.9/errors/ms/ERR_DNS_FAIL --- squid-5.8/errors/ms/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_DNS_FAIL 2023-05-01 10:40:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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

          +
          + +

          Pelayan DNS hantar :

          +
          +
          %z
          +
          + +

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

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_ESI squid-5.9/errors/ms/ERR_ESI --- squid-5.8/errors/ms/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_ESI 2023-05-01 10:40:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Webmaster anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_FORWARDING_DENIED squid-5.9/errors/ms/ERR_FORWARDING_DENIED --- squid-5.8/errors/ms/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_FORWARDING_DENIED 2023-05-01 10:40:13.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_FTP_DISABLED squid-5.9/errors/ms/ERR_FTP_DISABLED --- squid-5.8/errors/ms/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_FTP_DISABLED 2023-05-01 10:40:13.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          FTP telah dimatikan

          +
          + +

          This cache does not support FTP.

          + +

          Pengurus Proxy anda ialah %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_FTP_FAILURE squid-5.9/errors/ms/ERR_FTP_FAILURE --- squid-5.8/errors/ms/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_FTP_FAILURE 2023-05-01 10:40:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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
          +
          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_FTP_FORBIDDEN squid-5.9/errors/ms/ERR_FTP_FORBIDDEN --- squid-5.8/errors/ms/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_FTP_FORBIDDEN 2023-05-01 10:40:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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
          +
          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_FTP_NOT_FOUND squid-5.9/errors/ms/ERR_FTP_NOT_FOUND --- squid-5.8/errors/ms/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_FTP_NOT_FOUND 2023-05-01 10:40:14.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_FTP_PUT_CREATED squid-5.9/errors/ms/ERR_FTP_PUT_CREATED --- squid-5.8/errors/ms/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_FTP_PUT_CREATED 2023-05-01 10:40:14.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operasi Berjaya

          +

          Fail dicipta

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_FTP_PUT_ERROR squid-5.9/errors/ms/ERR_FTP_PUT_ERROR --- squid-5.8/errors/ms/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_FTP_PUT_ERROR 2023-05-01 10:40:14.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +RALAT: FTP Gagal + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_FTP_PUT_MODIFIED squid-5.9/errors/ms/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/ms/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_FTP_PUT_MODIFIED 2023-05-01 10:40:14.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operasi Berjaya

          +

          Fail dikemaskini

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_FTP_UNAVAILABLE squid-5.9/errors/ms/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/ms/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_FTP_UNAVAILABLE 2023-05-01 10:40:14.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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
          +
          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_GATEWAY_FAILURE squid-5.9/errors/ms/ERR_GATEWAY_FAILURE --- squid-5.8/errors/ms/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_GATEWAY_FAILURE 2023-05-01 10:40:14.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_ICAP_FAILURE squid-5.9/errors/ms/ERR_ICAP_FAILURE --- squid-5.8/errors/ms/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_ICAP_FAILURE 2023-05-01 10:40:15.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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:

          +
            +
          • The ICAP server is not reachable.

          • +
          • Respon yang salah diterima dari pelayan ICAP

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_INVALID_REQ squid-5.9/errors/ms/ERR_INVALID_REQ --- squid-5.8/errors/ms/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_INVALID_REQ 2023-05-01 10:40:15.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          Permintaan Salah error was encountered while trying to process the request:

          + +
          +
          %R
          +
          + +

          Some possible problems are:

          +
            +
          • Missing or unknown request method.

          • +
          • URL Hilang

          • +
          • Kehilangan HTTP Identifier (HTTP/1.0)

          • +
          • Permintaan terlalu besar

          • +
          • 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.

          • +
          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_INVALID_RESP squid-5.9/errors/ms/ERR_INVALID_RESP --- squid-5.8/errors/ms/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_INVALID_RESP 2023-05-01 10:40:15.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          Respon Salah 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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_INVALID_URL squid-5.9/errors/ms/ERR_INVALID_URL --- squid-5.8/errors/ms/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_INVALID_URL 2023-05-01 10:40:15.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          URL Salah

          +
          + +

          Some aspect of the requested URL is incorrect.

          + +

          Some possible problems are:

          +
            +
          • Missing or incorrect access protocol (should be http:// or similar)

          • +
          • Nama Host Hilang

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

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

          • +
          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_LIFETIME_EXP squid-5.9/errors/ms/ERR_LIFETIME_EXP --- squid-5.8/errors/ms/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_LIFETIME_EXP 2023-05-01 10:40:15.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_NO_RELAY squid-5.9/errors/ms/ERR_NO_RELAY --- squid-5.8/errors/ms/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_NO_RELAY 2023-05-01 10:40:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/ms/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/ms/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:40:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/error-details.txt squid-5.9/errors/ms/error-details.txt --- squid-5.8/errors/ms/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/error-details.txt 2023-05-01 10:40:18.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/ms/ERR_PRECONDITION_FAILED squid-5.9/errors/ms/ERR_PRECONDITION_FAILED --- squid-5.8/errors/ms/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_PRECONDITION_FAILED 2023-05-01 10:40:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/ms/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/ms/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:40:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_READ_ERROR squid-5.9/errors/ms/ERR_READ_ERROR --- squid-5.8/errors/ms/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_READ_ERROR 2023-05-01 10:40:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_READ_TIMEOUT squid-5.9/errors/ms/ERR_READ_TIMEOUT --- squid-5.8/errors/ms/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_READ_TIMEOUT 2023-05-01 10:40:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/ms/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/ms/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:40:17.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          Gagal membuat sambungan selamat ke %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_SHUTTING_DOWN squid-5.9/errors/ms/ERR_SHUTTING_DOWN --- squid-5.8/errors/ms/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_SHUTTING_DOWN 2023-05-01 10:40:17.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_SOCKET_FAILURE squid-5.9/errors/ms/ERR_SOCKET_FAILURE --- squid-5.8/errors/ms/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_SOCKET_FAILURE 2023-05-01 10:40:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          Kegagalan Socket

          +
          + +

          The system returned: %E

          + +

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

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_TOO_BIG squid-5.9/errors/ms/ERR_TOO_BIG --- squid-5.8/errors/ms/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_TOO_BIG 2023-05-01 10:40:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_UNSUP_HTTPVERSION squid-5.9/errors/ms/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/ms/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_UNSUP_HTTPVERSION 2023-05-01 10:40:17.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_UNSUP_REQ squid-5.9/errors/ms/ERR_UNSUP_REQ --- squid-5.8/errors/ms/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_UNSUP_REQ 2023-05-01 10:40:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_URN_RESOLVE squid-5.9/errors/ms/ERR_URN_RESOLVE --- squid-5.8/errors/ms/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_URN_RESOLVE 2023-05-01 10:40:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          RALAT

          +

          URL yang diminta tidak dapat dimuaturun

          +
          +
          + +
          +

          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 :)

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_WRITE_ERROR squid-5.9/errors/ms/ERR_WRITE_ERROR --- squid-5.8/errors/ms/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_WRITE_ERROR 2023-05-01 10:40:18.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

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

          + +
          +

          Kegagalan Menulis

          +
          + +

          The system returned: %E

          + +

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

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ms/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/ms/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/ms/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ms/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:40:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +RALAT: URL yang diminta tidak dapat diterima + + +
          +

          RALAT

          +

          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.

          + +

          Pengurus Proxy anda ialah %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_ACCESS_DENIED squid-5.9/errors/nl/ERR_ACCESS_DENIED --- squid-5.8/errors/nl/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_ACCESS_DENIED 2023-05-01 10:40:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Toegang niet toegestaan.

          +
          + +

          U heeft geen toegang tot de URL die u probeerde op te vragen van deze server. Neem contact op met uw service provider als u denkt dat dit niet klopt.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/nl/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/nl/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:40:19.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van 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.

          +

          Deze grootte-beperkingen zijn ingesteld door de beheerder van deze cache. Neem contact op met de beheerder van deze cache, wanneer U van mening bent dat deze beperking onjuist is.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_AGENT_CONFIGURE squid-5.9/errors/nl/ERR_AGENT_CONFIGURE --- squid-5.8/errors/nl/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_AGENT_CONFIGURE 2023-05-01 10:40:19.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuratie + + +
          +

          FOUT

          +

          Web Browser Configuratie

          +
          +
          + +
          +
          +

          Uw Browser instellingen dienen te worden aangepast om dit netwerk te kunnen gebruiken.

          +
          + +

          Hoe kunt u deze instellingen in uw browser vinden:

          + +
          +For Firefox browsers go to: +
            +
          • Configuratie -> Internet Opties -> Geavanceerd -> Netwerk ->LAN Instellingen
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Configuratie -> Internet Opties -> Verbinding -> LAN Instellingen ->Proxy
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Configuratie ->Voorkeursinstellingen -> Geavanceerd -> Netwerk ->Proxy Servers
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_AGENT_WPAD squid-5.9/errors/nl/ERR_AGENT_WPAD --- squid-5.8/errors/nl/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_AGENT_WPAD 2023-05-01 10:40:19.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuratie + + +
          +

          FOUT

          +

          Web Browser Configuratie

          +
          +
          + +
          +
          +

          Uw Browser instellingen dienen te worden aangepast om dit netwerk te kunnen gebruiken.

          +
          + +

          Hoe kunt u deze instellingen in uw browser vinden:

          + +
          +For Firefox browsers go to: +
            +
          • Configuratie -> Internet Opties -> Geavanceerd -> Netwerk ->LAN Instellingen
          • +
          • Select Auto-detect proxy settings for this network
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Configuratie -> Internet Opties -> Verbinding -> LAN Instellingen ->Proxy
          • +
          • Selecteer: Instellingen automatisch detecteren
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Configuratie ->Voorkeursinstellingen -> Geavanceerd -> Netwerk ->Proxy Servers
          • +
          • Selecteer: Gebruik automatisch proxy configuratie
          • +
          +
          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/nl/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/nl/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:40:19.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FOUT: Cache toegang niet toegestaan + + +
          +

          FOUT

          +

          Cache toegang niet toegestaan.

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Cache toegang niet toegestaan.

          +
          + +

          Sorry, het is u niet toegestaan om %U van deze cache op te vragen totdat u zich geidentificeerd hebt.

          + +

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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/nl/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/nl/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:40:19.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FOUT: Cache Manager toegang niet toegestaan + + +
          +

          FOUT

          +

          Cache Manager toegang niet toegestaan.

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Cache Manager toegang niet toegestaan.

          +
          + +

          Sorry, het is u momenteel niet toegestaan om %U op te vragen via deze cache manager totdat u zichzelf hebt geauthenticeerd.

          + +

          Neem contact op met de cache beheerder als u problemen heeft met authenticatie. Als U de beheerder bent, lees dan de Squid documentatie over de cache manager interface en lees de cache log voor meer gedetailleerde foutmeldingen.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_CANNOT_FORWARD squid-5.9/errors/nl/ERR_CANNOT_FORWARD --- squid-5.8/errors/nl/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_CANNOT_FORWARD 2023-05-01 10:40:20.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Momenteel niet in staat dit verzoek door te sturen.

          +
          + +

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

          + +

          Mogelijke problemen zijn:

          +
            +
          • 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.
          • +
          + +

          De beheerder van deze cache is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_CONFLICT_HOST squid-5.9/errors/nl/ERR_CONFLICT_HOST --- squid-5.8/errors/nl/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_CONFLICT_HOST 2023-05-01 10:40:20.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van 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.

          + +

          Mogelijke problemen zijn:

          +
            +
          • 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.
          • +
          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_CONNECT_FAIL squid-5.9/errors/nl/ERR_CONNECT_FAIL --- squid-5.8/errors/nl/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_CONNECT_FAIL 2023-05-01 10:40:20.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Verbinding met %I mislukt.

          +
          + +

          Het systeem gaf als antwoord: %E

          + +

          De server of het netwerk dat u probeert te benaderen is onbereikbaar. Probeer het later nog eens..

          + +

          De beheerder van deze cache is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_DIR_LISTING squid-5.9/errors/nl/ERR_DIR_LISTING --- squid-5.8/errors/nl/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_DIR_LISTING 2023-05-01 10:40:20.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Map: %U + + +
          +

          Map: %U/

          +
          +
          + +
          +

          Map Inhoud:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Hogere Map (Hoofd Map)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_DNS_FAIL squid-5.9/errors/nl/ERR_DNS_FAIL --- squid-5.8/errors/nl/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_DNS_FAIL 2023-05-01 10:40:20.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Niet in staat om het IP adres te bepalen van server %H

          +
          + +

          De DNS server heeft geantwoord:

          +
          +
          %z
          +
          + +

          Dit betekent dat de cache niet in staat was om de hostnaam uit de URL te herleiden. Controleer of de naam klopt.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_ESI squid-5.9/errors/nl/ERR_ESI --- squid-5.8/errors/nl/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_ESI 2023-05-01 10:40:20.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          ESI processing mislukt.

          +
          + +

          De ESI processor heeft geantwoord:

          +
          +
          %Z
          +
          + +

          Dit betekent dat de vervanger niet in staat was om de ESI template te bewerken. Geef deze fout door aan de webmaster, asltublieft.

          + +

          Uw cachebeheerder is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_FORWARDING_DENIED squid-5.9/errors/nl/ERR_FORWARDING_DENIED --- squid-5.8/errors/nl/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_FORWARDING_DENIED 2023-05-01 10:40:21.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Doorsturen niet toegestaan.

          +
          + +

          Deze cache zal uw verzoek niet doorsturen, omdat het een sibling relatie tracht te bewerkstelligen. Wellicht dat de client op %i een fout ingestelde cache is.

          + +

          De beheerder van deze cache is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_FTP_DISABLED squid-5.9/errors/nl/ERR_FTP_DISABLED --- squid-5.8/errors/nl/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_FTP_DISABLED 2023-05-01 10:40:21.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          FTP is uitgeschakeld

          +
          + +

          Deze cache ondersteunt geen FTP.

          + +

          De beheerder van deze cache is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_FTP_FAILURE squid-5.9/errors/nl/ERR_FTP_FAILURE --- squid-5.8/errors/nl/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_FTP_FAILURE 2023-05-01 10:40:21.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          Er is een FTP protocolfout opgetreden tijdens het ophalen van de URL: %U

          + +

          Squid heeft de volgende FTP opdracht verstuurd:

          +
          +
          %f
          +
          + +

          De server antwoordde met:

          +
          +
          %F
          +
          %g
          +
          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_FTP_FORBIDDEN squid-5.9/errors/nl/ERR_FTP_FORBIDDEN --- squid-5.8/errors/nl/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_FTP_FORBIDDEN 2023-05-01 10:40:21.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De FTP authenticatie is mislukt tijdens het openen van URL: %U

          + +

          Squid heeft de volgende FTP opdracht verstuurd:

          +
          +
          %f
          +
          + +

          De server antwoordde met:

          +
          +
          %F
          +
          %g
          +
          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_FTP_NOT_FOUND squid-5.9/errors/nl/ERR_FTP_NOT_FOUND --- squid-5.8/errors/nl/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_FTP_NOT_FOUND 2023-05-01 10:40:21.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende URL kon niet worden opgehaald: %U

          + +

          Squid heeft de volgende FTP opdracht verstuurd:

          +
          +
          %f
          +
          + +

          De server antwoordde met:

          +
          +
          %F
          +
          %g
          +
          + +

          Dit kan veroorzaakt worden door een FTP URL met een absoluut pad (hetgeen niet in overeenstemming is met RFC 1738). Als dit de oorzaak is, dan kan het bestand gevonden worden op %B.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_FTP_PUT_CREATED squid-5.9/errors/nl/ERR_FTP_PUT_CREATED --- squid-5.8/errors/nl/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_FTP_PUT_CREATED 2023-05-01 10:40:22.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Bewerking succesvol

          +

          Bestand aangemaakt

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_FTP_PUT_ERROR squid-5.9/errors/nl/ERR_FTP_PUT_ERROR --- squid-5.8/errors/nl/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_FTP_PUT_ERROR 2023-05-01 10:40:22.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FOUT: FTP upload mislukt + + +
          +

          FOUT

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          Er is een FTP protocolfout opgetreden tijdens het ophalen van de URL: %U

          + +

          Squid heeft de volgende FTP opdracht verstuurd:

          +
          +
          %f
          +
          + +

          De server antwoordde met:

          +
          +
          %F
          +
          + +

          Dit betekent dat de FTP server geen toegang of opslagcapaciteit heeft om het bestand op te slaan. Controleer het pad, de rechten en opslagcapaciteit en probeer het opnieuw.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_FTP_PUT_MODIFIED squid-5.9/errors/nl/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/nl/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_FTP_PUT_MODIFIED 2023-05-01 10:40:22.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Bewerking succesvol

          +

          Bestand vernieuwd

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_FTP_UNAVAILABLE squid-5.9/errors/nl/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/nl/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_FTP_UNAVAILABLE 2023-05-01 10:40:22.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De FTP server was overbelast tijdens het opvragen van de URL: %U

          + +

          Squid heeft de volgende FTP opdracht verstuurd:

          + +
          +
          %f
          +
          + +

          De server antwoordde met:

          +
          +
          %F
          +
          %g
          +
          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_GATEWAY_FAILURE squid-5.9/errors/nl/ERR_GATEWAY_FAILURE --- squid-5.8/errors/nl/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_GATEWAY_FAILURE 2023-05-01 10:40:22.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van 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.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_ICAP_FAILURE squid-5.9/errors/nl/ERR_ICAP_FAILURE --- squid-5.8/errors/nl/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_ICAP_FAILURE 2023-05-01 10:40:23.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          ICAP protocol fout.

          +
          + +

          Het systeem gaf als antwoord: %E

          + +

          Dit betekent dat een onderdeel van de ICAP communicatie is mislukt.

          + +

          Mogelijke problemen zijn:

          +
            +
          • De ICAP server is onbereikbaar.

          • +
          • Er is een illegale reactie ontvangen van de ICAP server.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_INVALID_REQ squid-5.9/errors/nl/ERR_INVALID_REQ --- squid-5.8/errors/nl/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_INVALID_REQ 2023-05-01 10:40:23.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          Ongeldige Aanvraag Er is een fout opgetreden tijdens het verwerken van:

          + +
          +
          %R
          +
          + +

          Mogelijke problemen zijn:

          +
            +
          • Ontbrekende of onbekende verzoekmethode.

          • +
          • Ontbrekende URL.

          • +
          • Ontbrekende HTTP identificatie (HTTP/1.0).

          • +
          • Het verzoek is te lang.

          • +
          • De Content-Length ontbreekt voor het POST of PUT verzoek.

          • +
          • Er staat een ongeldig teken in de hostnaam; het teken _ is niet toegestaan.

          • +
          • HTTP/1.1 Verwacht: feature wordt gevraagd door HTTP/1.0 software.

          • +
          + +

          De beheerder van deze cache is %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_INVALID_RESP squid-5.9/errors/nl/ERR_INVALID_RESP --- squid-5.8/errors/nl/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_INVALID_RESP 2023-05-01 10:40:23.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          Onverwachte reactie er is een fout opgetreden tijdens het uitvoeren van opdracht:

          + +
          +
          %R
          +
          + +

          Het ontvangen HTTP bericht is niet begrepen of beschadigd. Neem contact op met de beheerder van de website die u probeert te bereiken.

          + +

          De cache beheerder kan u meer informatie verstrekken met betrekking tot de exacte reden van dit probleem.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_INVALID_URL squid-5.9/errors/nl/ERR_INVALID_URL --- squid-5.8/errors/nl/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_INVALID_URL 2023-05-01 10:40:23.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Ongeldige URL

          +
          + +

          Een gedeelte van de gevraagde URL is ongeldig.

          + +

          Mogelijke problemen zijn:

          +
            +
          • Ontbrekend of onjuist toegangsprotocol (moet zijn http:// of vergelijkbaar)

          • +
          • Ontbrekende hostnaam

          • +
          • Ongeldige dubbele escape in het URL pad

          • +
          • Er staat een ongeldig teken in de hostnaam; het teken _ is niet toegestaan.

          • +
          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_LIFETIME_EXP squid-5.9/errors/nl/ERR_LIFETIME_EXP --- squid-5.8/errors/nl/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_LIFETIME_EXP 2023-05-01 10:40:23.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          De levensduur van de verbindings is verstreken

          +
          + +

          Squid heeft het verzoek afgebroken omdat het de maximale verbindingslevensduur heeft overschreden.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_NO_RELAY squid-5.9/errors/nl/ERR_NO_RELAY --- squid-5.8/errors/nl/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_NO_RELAY 2023-05-01 10:40:23.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Geen WAIS Relay

          +
          + +

          Er is geen WAIS Relay host gedefinieerd voor deze Cache! Neem contact op met de cachebeheerder.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/nl/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/nl/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:40:24.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Een geldig document werd niet gevonden in de cache, en de only-if-cached richtlijn was ingesteld.

          +
          + +

          U heeft een verzoek gedaan met een only-if-cached cachebeheer richtlijn. Het document werd niet gevonden in de cache of er was een herbevestiging nodig die niet werd toegestaan door de only-if-cached richtlijn.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/error-details.txt squid-5.9/errors/nl/error-details.txt --- squid-5.8/errors/nl/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/error-details.txt 2023-05-01 10:40:26.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/nl/ERR_PRECONDITION_FAILED squid-5.9/errors/nl/ERR_PRECONDITION_FAILED --- squid-5.8/errors/nl/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_PRECONDITION_FAILED 2023-05-01 10:40:24.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van 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-5.8/errors/nl/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/nl/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/nl/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:40:24.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_READ_ERROR squid-5.9/errors/nl/ERR_READ_ERROR --- squid-5.8/errors/nl/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_READ_ERROR 2023-05-01 10:40:24.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Leesfout

          +
          + +

          Het systeem gaf als antwoord: %E

          + +

          Er is een fout opgetreden tijdens het lezen van data van het netwerk. Probeer het opnieuw.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_READ_TIMEOUT squid-5.9/errors/nl/ERR_READ_TIMEOUT --- squid-5.8/errors/nl/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_READ_TIMEOUT 2023-05-01 10:40:24.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Lees Timeout

          +
          + +

          Het systeem gaf als antwoord: %E

          + +

          Er is een timeout opgetreden tijdens het lezen van data van het netwerk. Het netwerk of de server zijn niet beschikbaar of overbelast. Probeer het opnieuw.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/nl/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/nl/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:40:25.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Het opzetten van een beveiligde verbinding naar %I is mislukt

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Deze proxy en de benaderde server hebben geen overeenstemming bereikt over de beveiling om uw aanvraag af te handelen. Het is mogelijk dat de benaderde server geen beveiligde verbindingen ondersteund of dat de proxy een te lage beveiliging heeft gedetecteerd.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_SHUTTING_DOWN squid-5.9/errors/nl/ERR_SHUTTING_DOWN --- squid-5.8/errors/nl/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_SHUTTING_DOWN 2023-05-01 10:40:25.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +

          Deze cache is bezig met herstarten en kan daarom momenteel niet aan uw verzoek voldoen. Probeer het later opnieuw.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_SOCKET_FAILURE squid-5.9/errors/nl/ERR_SOCKET_FAILURE --- squid-5.8/errors/nl/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_SOCKET_FAILURE 2023-05-01 10:40:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Socket Fout

          +
          + +

          Het systeem gaf als antwoord: %E

          + +

          Squid is niet in staat een TCP socket aan te maken, waarschijnlijk als gevolg van overbelasting. Probeer uw verzoek opnieuw.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_TOO_BIG squid-5.9/errors/nl/ERR_TOO_BIG --- squid-5.8/errors/nl/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_TOO_BIG 2023-05-01 10:40:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          De aanvraag of het antwoord is te groot.

          +
          + +

          De POST of PUT opdracht die u heeft verstuurd is te groot.

          +

          Indien u een bestande probeerde te downloaden, dan was het bestand dat U probeert te ontvangen, te groot.

          +

          Deze grootte-beperkingen zijn ingesteld door de beheerder van deze cache. Neem contact op met de beheerder van deze cache, wanneer U van mening bent dat deze beperking onjuist is.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_UNSUP_HTTPVERSION squid-5.9/errors/nl/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/nl/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_UNSUP_HTTPVERSION 2023-05-01 10:40:25.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          Niet ondersteunde HTTP versie

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Niet ondersteunde HTTP versie

          +
          + +

          Deze Squid proxy accepteert de HTTP versie die u probeert te gebruiken niet

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_UNSUP_REQ squid-5.9/errors/nl/ERR_UNSUP_REQ --- squid-5.8/errors/nl/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_UNSUP_REQ 2023-05-01 10:40:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Niet ondersteunde verzoekmethode of protocol

          +
          + +

          Squid ondersteunt niet alle verzoekmethoden voor alle toegangsprotocollen. U kunt bijvoorbeeld geen Gopher verzoek POSTen.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_URN_RESOLVE squid-5.9/errors/nl/ERR_URN_RESOLVE --- squid-5.8/errors/nl/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_URN_RESOLVE 2023-05-01 10:40:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: De gevraagde URN kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URN kon niet worden benaderd

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URN: %U

          + +
          +

          Kan de URN niet herleiden

          +
          + +

          Hmmm, verwacht niet teveel van URNs op %T :)

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_WRITE_ERROR squid-5.9/errors/nl/ERR_WRITE_ERROR --- squid-5.8/errors/nl/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_WRITE_ERROR 2023-05-01 10:40:26.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Schrijffout

          +
          + +

          Het systeem gaf als antwoord: %E

          + +

          Er is een fout opgetreden tijdens het schrijven naar het netwerk. Probeer het opnieuw.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/nl/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/nl/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/nl/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/nl/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:40:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FOUT: De gevraagde URL kon niet worden opgehaald + + +
          +

          FOUT

          +

          De gevraagde URL kon niet worden opgehaald

          +
          +
          + +
          +

          De volgende fout is opgetreden tijdens het ophalen van URL: %U

          + +
          +

          Antwoord is leeg

          +
          + +

          Squid ontving in het geheel geen data op dit verzoek.

          + +

          De beheerder van deze cache is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_ACCESS_DENIED squid-5.9/errors/oc/ERR_ACCESS_DENIED --- squid-5.8/errors/oc/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_ACCESS_DENIED 2023-05-01 10:40:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Accès interdich.

          +
          + +

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

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/oc/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/oc/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:40:26.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'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.

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_AGENT_CONFIGURE squid-5.9/errors/oc/ERR_AGENT_CONFIGURE --- squid-5.8/errors/oc/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_AGENT_CONFIGURE 2023-05-01 10:40:27.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +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.
          • +
          +
          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_AGENT_WPAD squid-5.9/errors/oc/ERR_AGENT_WPAD --- squid-5.8/errors/oc/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_AGENT_WPAD 2023-05-01 10:40:27.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +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
          • +
          +
          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/oc/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/oc/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:40:27.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: Cache Access Denied + + +
          +

          ERROR

          +

          Accès a l'amagatal interdich.

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Accès a l'amagatal interdich.

          +
          + +

          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-5.8/errors/oc/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/oc/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/oc/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:40:27.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: Cache Manager Access Denied + + +
          +

          ERROR

          +

          Cache Manager Access Denied.

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'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-5.8/errors/oc/ERR_CANNOT_FORWARD squid-5.9/errors/oc/ERR_CANNOT_FORWARD --- squid-5.8/errors/oc/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_CANNOT_FORWARD 2023-05-01 10:40:27.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'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.

          + +

          Problèmas envisajables :

          +
            +
          • 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.
          • +
          + +

          Vòstre administrator d'amagatal es %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_CONFLICT_HOST squid-5.9/errors/oc/ERR_CONFLICT_HOST --- squid-5.8/errors/oc/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_CONFLICT_HOST 2023-05-01 10:40:28.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a 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èmas envisajables :

          +
            +
          • 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.
          • +
          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_CONNECT_FAIL squid-5.9/errors/oc/ERR_CONNECT_FAIL --- squid-5.8/errors/oc/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_CONNECT_FAIL 2023-05-01 10:40:28.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          La connexion a %I a fracassat.

          +
          + +

          Lo sistèma a tornat : %E

          + +

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

          + +

          Vòstre administrator d'amagatal es %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_DIR_LISTING squid-5.9/errors/oc/ERR_DIR_LISTING --- squid-5.8/errors/oc/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_DIR_LISTING 2023-05-01 10:40:28.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Repertòri : %U + + +
          +

          Repertòri : %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_DNS_FAIL squid-5.9/errors/oc/ERR_DNS_FAIL --- squid-5.8/errors/oc/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_DNS_FAIL 2023-05-01 10:40:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Impossible d'associar una adreça IP a la maquina %H

          +
          + +

          Lo servidor DNS a tornat :

          +
          +
          %z
          +
          + +

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

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_ESI squid-5.9/errors/oc/ERR_ESI --- squid-5.8/errors/oc/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_ESI 2023-05-01 10:40:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Lo tractament ESI a fracassat.

          +
          + +

          Lo processor ESI a respondut :

          +
          +
          %Z
          +
          + +

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

          + +

          Vòstre webmèstre es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_FORWARDING_DENIED squid-5.9/errors/oc/ERR_FORWARDING_DENIED --- squid-5.8/errors/oc/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_FORWARDING_DENIED 2023-05-01 10:40:28.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'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.

          + +

          Vòstre administrator d'amagatal es %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_FTP_DISABLED squid-5.9/errors/oc/ERR_FTP_DISABLED --- squid-5.8/errors/oc/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_FTP_DISABLED 2023-05-01 10:40:29.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Lo FTP es desactivat

          +
          + +

          This cache does not support FTP.

          + +

          Vòstre administrator d'amagatal es %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_FTP_FAILURE squid-5.9/errors/oc/ERR_FTP_FAILURE --- squid-5.8/errors/oc/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_FTP_FAILURE 2023-05-01 10:40:29.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          An FTP protocol error occurred while trying to retrieve the URL: %U

          + +

          Squid sent the following FTP command:

          +
          +
          %f
          +
          + +

          Lo servidor a respondut :

          +
          +
          %F
          +
          %g
          +
          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_FTP_FORBIDDEN squid-5.9/errors/oc/ERR_FTP_FORBIDDEN --- squid-5.8/errors/oc/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_FTP_FORBIDDEN 2023-05-01 10:40:29.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

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

          + +

          Squid sent the following FTP command:

          +
          +
          %f
          +
          + +

          Lo servidor a respondut :

          +
          +
          %F
          +
          %g
          +
          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_FTP_NOT_FOUND squid-5.9/errors/oc/ERR_FTP_NOT_FOUND --- squid-5.8/errors/oc/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_FTP_NOT_FOUND 2023-05-01 10:40:29.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          The following URL could not be retrieved: %U

          + +

          Squid sent the following FTP command:

          +
          +
          %f
          +
          + +

          Lo servidor a respondut :

          +
          +
          %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.

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_FTP_PUT_CREATED squid-5.9/errors/oc/ERR_FTP_PUT_CREATED --- squid-5.8/errors/oc/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_FTP_PUT_CREATED 2023-05-01 10:40:29.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Ooperacion capitada

          +

          Fichièr creat

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_FTP_PUT_ERROR squid-5.9/errors/oc/ERR_FTP_PUT_ERROR --- squid-5.8/errors/oc/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_FTP_PUT_ERROR 2023-05-01 10:40:30.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +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
          +
          + +

          Lo servidor a respondut :

          +
          +
          %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.

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_FTP_PUT_MODIFIED squid-5.9/errors/oc/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/oc/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_FTP_PUT_MODIFIED 2023-05-01 10:40:30.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Ooperacion capitada

          +

          Fichièr mes a jorn

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_FTP_UNAVAILABLE squid-5.9/errors/oc/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/oc/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_FTP_UNAVAILABLE 2023-05-01 10:40:30.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

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

          + +

          Squid sent the following FTP command:

          + +
          +
          %f
          +
          + +

          Lo servidor a respondut :

          +
          +
          %F
          +
          %g
          +
          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_GATEWAY_FAILURE squid-5.9/errors/oc/ERR_GATEWAY_FAILURE --- squid-5.8/errors/oc/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_GATEWAY_FAILURE 2023-05-01 10:40:30.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'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.

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_ICAP_FAILURE squid-5.9/errors/oc/ERR_ICAP_FAILURE --- squid-5.8/errors/oc/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_ICAP_FAILURE 2023-05-01 10:40:30.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Error de protocòl ICAP.

          +
          + +

          Lo sistèma a tornat : %E

          + +

          This means that some aspect of the ICAP communication failed.

          + +

          Problèmas envisajables :

          +
            +
          • Lo servidor ICAP es pas jonhible.

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

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_INVALID_REQ squid-5.9/errors/oc/ERR_INVALID_REQ --- squid-5.8/errors/oc/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_INVALID_REQ 2023-05-01 10:40:30.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

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

          + +
          +
          %R
          +
          + +

          Problèmas envisajables :

          +
            +
          • Metòde de requèsta desconegut o perdut.

          • +
          • Abséncia d'URL

          • +
          • Abséncia d'identificant HTTP (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.

          • +
          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_INVALID_RESP squid-5.9/errors/oc/ERR_INVALID_RESP --- squid-5.8/errors/oc/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_INVALID_RESP 2023-05-01 10:40:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          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.

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_INVALID_URL squid-5.9/errors/oc/ERR_INVALID_URL --- squid-5.8/errors/oc/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_INVALID_URL 2023-05-01 10:40:31.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          URL invalida

          +
          + +

          Some aspect of the requested URL is incorrect.

          + +

          Problèmas envisajables :

          +
            +
          • Missing or incorrect access protocol (should be http:// or similar)

          • +
          • Nom de maquina absent

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

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

          • +
          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_LIFETIME_EXP squid-5.9/errors/oc/ERR_LIFETIME_EXP --- squid-5.8/errors/oc/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_LIFETIME_EXP 2023-05-01 10:40:31.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Durada de vida de la connexion depassada

          +
          + +

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

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_NO_RELAY squid-5.9/errors/oc/ERR_NO_RELAY --- squid-5.8/errors/oc/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_NO_RELAY 2023-05-01 10:40:31.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          No Wais Relay

          +
          + +

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

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/oc/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/oc/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:40:31.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'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.

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/error-details.txt squid-5.9/errors/oc/error-details.txt --- squid-5.8/errors/oc/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/error-details.txt 2023-05-01 10:40:34.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/oc/ERR_PRECONDITION_FAILED squid-5.9/errors/oc/ERR_PRECONDITION_FAILED --- squid-5.8/errors/oc/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_PRECONDITION_FAILED 2023-05-01 10:40:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'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-5.8/errors/oc/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/oc/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/oc/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:40:32.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_READ_ERROR squid-5.9/errors/oc/ERR_READ_ERROR --- squid-5.8/errors/oc/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_READ_ERROR 2023-05-01 10:40:32.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Error de lectura

          +
          + +

          Lo sistèma a tornat : %E

          + +

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

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_READ_TIMEOUT squid-5.9/errors/oc/ERR_READ_TIMEOUT --- squid-5.8/errors/oc/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_READ_TIMEOUT 2023-05-01 10:40:32.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Read Timeout

          +
          + +

          Lo sistèma a tornat : %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.

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/oc/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/oc/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:40:32.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Failed to establish a secure connection to %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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.

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_SHUTTING_DOWN squid-5.9/errors/oc/ERR_SHUTTING_DOWN --- squid-5.8/errors/oc/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_SHUTTING_DOWN 2023-05-01 10:40:32.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'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.

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_SOCKET_FAILURE squid-5.9/errors/oc/ERR_SOCKET_FAILURE --- squid-5.8/errors/oc/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_SOCKET_FAILURE 2023-05-01 10:40:33.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Error de socket

          +
          + +

          Lo sistèma a tornat : %E

          + +

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

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_TOO_BIG squid-5.9/errors/oc/ERR_TOO_BIG --- squid-5.8/errors/oc/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_TOO_BIG 2023-05-01 10:40:33.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          La requèsta o la responsa es tròp gròssa.

          +
          + +

          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.

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_UNSUP_HTTPVERSION squid-5.9/errors/oc/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/oc/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_UNSUP_HTTPVERSION 2023-05-01 10:40:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          Version de HTTP pas suportada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Version de HTTP pas suportada

          +
          + +

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

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_UNSUP_REQ squid-5.9/errors/oc/ERR_UNSUP_REQ --- squid-5.8/errors/oc/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_UNSUP_REQ 2023-05-01 10:40:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'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.

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_URN_RESOLVE squid-5.9/errors/oc/ERR_URN_RESOLVE --- squid-5.8/errors/oc/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_URN_RESOLVE 2023-05-01 10:40:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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

          + +
          +

          Impossible de resòlvre l'URN

          +
          + +

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

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_WRITE_ERROR squid-5.9/errors/oc/ERR_WRITE_ERROR --- squid-5.8/errors/oc/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_WRITE_ERROR 2023-05-01 10:40:33.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Problèma d'escritura

          +
          + +

          Lo sistèma a tornat : %E

          + +

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

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/oc/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/oc/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/oc/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/oc/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:40:34.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERREUR : L'URL demandada a pas pogut èsser cargada + + +
          +

          ERROR

          +

          L'URL demandada a pas pogut èsser cargada

          +
          +
          + +
          +

          L'error seguenta s'es producha en ensajant d'accedir a l'URL : %U

          + +
          +

          Responsa de talha nulla

          +
          + +

          Squid did not receive any data for this request.

          + +

          Vòstre administrator d'amagatal es %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_ACCESS_DENIED squid-5.9/errors/pl/ERR_ACCESS_DENIED --- squid-5.8/errors/pl/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_ACCESS_DENIED 2023-05-01 10:40:34.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

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

          + +
          +

          Dostęp zabroniony.

          +
          + +

          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-5.8/errors/pl/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/pl/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/pl/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:40:34.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          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-5.8/errors/pl/ERR_AGENT_CONFIGURE squid-5.9/errors/pl/ERR_AGENT_CONFIGURE --- squid-5.8/errors/pl/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_AGENT_CONFIGURE 2023-05-01 10:40:34.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          BŁĄD

          +

          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-5.8/errors/pl/ERR_AGENT_WPAD squid-5.9/errors/pl/ERR_AGENT_WPAD --- squid-5.8/errors/pl/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_AGENT_WPAD 2023-05-01 10:40:34.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          BŁĄD

          +

          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-5.8/errors/pl/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/pl/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/pl/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:40:35.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +BŁĄD: Dostęp do serwera cache zabroniony + + +
          +

          BŁĄD

          +

          Dostęp do serwera cache zabroniony.

          +
          +
          + +
          +

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

          + +
          +

          Dostęp do serwera cache zabroniony.

          +
          + +

          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-5.8/errors/pl/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/pl/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/pl/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:40:35.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +BŁĄD: Dostęp do cache managera zabroniony + + +
          +

          BŁĄD

          +

          Dostep do cache managera zabroniony.

          +
          +
          + +
          +

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

          + +
          +

          Dostep do cache managera zabroniony.

          +
          + +

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

          + +

          Skontaktuj się z administratorem serwera cache jeśli masz trudności z autoryzacją, jeśli jesteś administratorem, przeczytaj w dokumentacji Squida fragment dotyczący cache managera i sprawdź log serwera cache w poszukiwaniu bardziej szczegółowych komunikatów o błędach.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_CANNOT_FORWARD squid-5.9/errors/pl/ERR_CANNOT_FORWARD --- squid-5.8/errors/pl/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_CANNOT_FORWARD 2023-05-01 10:40:35.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

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

          + +
          +

          Nie można przekazać tego żądania w chwili obecnej.

          +
          + +

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

          + +

          Some possible problems are:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_CONFLICT_HOST squid-5.9/errors/pl/ERR_CONFLICT_HOST --- squid-5.8/errors/pl/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_CONFLICT_HOST 2023-05-01 10:40:35.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_CONNECT_FAIL squid-5.9/errors/pl/ERR_CONNECT_FAIL --- squid-5.8/errors/pl/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_CONNECT_FAIL 2023-05-01 10:40:35.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

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

          + +
          +

          Nieudane połączenie z %I.

          +
          + +

          System zwrócił wartość: %E

          + +

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

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_DIR_LISTING squid-5.9/errors/pl/ERR_DIR_LISTING --- squid-5.8/errors/pl/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_DIR_LISTING 2023-05-01 10:40:35.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Katalog: %U + + +
          +

          Katalog: %U/

          +
          +
          + +
          +

          Zawartość katalogu:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_DNS_FAIL squid-5.9/errors/pl/ERR_DNS_FAIL --- squid-5.8/errors/pl/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_DNS_FAIL 2023-05-01 10:40:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

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

          + +
          +

          Nie można ustalić adresu IP hosta o nazwie %H

          +
          + +

          Serwer DNS zwrócił następującą wartość:

          +
          +
          %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-5.8/errors/pl/ERR_ESI squid-5.9/errors/pl/ERR_ESI --- squid-5.8/errors/pl/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_ESI 2023-05-01 10:40:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          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-5.8/errors/pl/ERR_FORWARDING_DENIED squid-5.9/errors/pl/ERR_FORWARDING_DENIED --- squid-5.8/errors/pl/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_FORWARDING_DENIED 2023-05-01 10:40:36.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

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

          + +
          +

          Przekazanie żądania zabronione.

          +
          + +

          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-5.8/errors/pl/ERR_FTP_DISABLED squid-5.9/errors/pl/ERR_FTP_DISABLED --- squid-5.8/errors/pl/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_FTP_DISABLED 2023-05-01 10:40:36.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

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

          + +
          +

          FTP jest wyłączone

          +
          + +

          Ten serwer cache nie prowadzi połączeń FTP.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_FTP_FAILURE squid-5.9/errors/pl/ERR_FTP_FAILURE --- squid-5.8/errors/pl/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_FTP_FAILURE 2023-05-01 10:40:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          Wystąpił błąd protokołu FTP podczas sprowadznia URL-a: %U

          + +

          Squid wysłał następującą komendę FTP:

          +
          +
          %f
          +
          + +

          Odpowiedź serwera:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_FTP_FORBIDDEN squid-5.9/errors/pl/ERR_FTP_FORBIDDEN --- squid-5.8/errors/pl/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_FTP_FORBIDDEN 2023-05-01 10:40:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

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

          + +

          Squid wysłał następującą komendę FTP:

          +
          +
          %f
          +
          + +

          Odpowiedź serwera:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_FTP_NOT_FOUND squid-5.9/errors/pl/ERR_FTP_NOT_FOUND --- squid-5.8/errors/pl/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_FTP_NOT_FOUND 2023-05-01 10:40:37.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          The following URL could not be retrieved: %U

          + +

          Squid wysłał następującą komendę FTP:

          +
          +
          %f
          +
          + +

          Odpowiedź serwera:

          +
          +
          %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-5.8/errors/pl/ERR_FTP_PUT_CREATED squid-5.9/errors/pl/ERR_FTP_PUT_CREATED --- squid-5.8/errors/pl/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_FTP_PUT_CREATED 2023-05-01 10:40:37.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operacja zakończona pomyślnie

          +

          plik został utworzony

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_FTP_PUT_ERROR squid-5.9/errors/pl/ERR_FTP_PUT_ERROR --- squid-5.8/errors/pl/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_FTP_PUT_ERROR 2023-05-01 10:40:37.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +BŁĄD: Nieudany FTP upload + + +
          +

          BŁĄD

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          Wystąpił błąd protokołu FTP podczas sprowadznia URL-a: %U

          + +

          Squid wysłał następującą komendę FTP:

          +
          +
          %f
          +
          + +

          Odpowiedź serwera:

          +
          +
          %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-5.8/errors/pl/ERR_FTP_PUT_MODIFIED squid-5.9/errors/pl/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/pl/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_FTP_PUT_MODIFIED 2023-05-01 10:40:37.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operacja zakończona pomyślnie

          +

          plik uaktualniony

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_FTP_UNAVAILABLE squid-5.9/errors/pl/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/pl/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_FTP_UNAVAILABLE 2023-05-01 10:40:37.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

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

          + +

          Squid wysłał następującą komendę FTP:

          + +
          +
          %f
          +
          + +

          Odpowiedź serwera:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_GATEWAY_FAILURE squid-5.9/errors/pl/ERR_GATEWAY_FAILURE --- squid-5.8/errors/pl/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_GATEWAY_FAILURE 2023-05-01 10:40:38.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          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-5.8/errors/pl/ERR_ICAP_FAILURE squid-5.9/errors/pl/ERR_ICAP_FAILURE --- squid-5.8/errors/pl/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_ICAP_FAILURE 2023-05-01 10:40:38.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

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

          + +
          +

          ICAP protocol error.

          +
          + +

          System zwrócił wartość: %E

          + +

          This means that some aspect of the ICAP communication failed.

          + +

          Some possible problems are:

          +
            +
          • Serwer ICAP jest nieosiągalny.

          • +
          • Odebrano błędną odpowiedź z serwera ICAP

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_INVALID_REQ squid-5.9/errors/pl/ERR_INVALID_REQ --- squid-5.8/errors/pl/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_INVALID_REQ 2023-05-01 10:40:38.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          Nieprawidłowe zapytanie wystąpił błąd podczas próby przetworzenia zapytania

          + +
          +
          %R
          +
          + +

          Some possible problems are:

          +
            +
          • Brak lub nieznana metoda (GET, POST)

          • +
          • Brak URL-a

          • +
          • Brak identyfikatora HTTP (HTTP/1.0)

          • +
          • RZbyt duży rozmiar żądania

          • +
          • Brak pola Content-Length dla metod POST lub PUT

          • +
          • Błędny znak w nazwie hosta; podkreślenia (underscores) są niedozwolone

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

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_INVALID_RESP squid-5.9/errors/pl/ERR_INVALID_RESP --- squid-5.8/errors/pl/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_INVALID_RESP 2023-05-01 10:40:38.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          Nieprawidłowa odpowiedź wystąpił błąd podczas próby przetworzenia zapytania

          + +
          +
          %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-5.8/errors/pl/ERR_INVALID_URL squid-5.9/errors/pl/ERR_INVALID_URL --- squid-5.8/errors/pl/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_INVALID_URL 2023-05-01 10:40:38.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

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

          + +
          +

          błędny URL

          +
          + +

          Some aspect of the requested URL is incorrect.

          + +

          Some possible problems are:

          +
            +
          • Brak lub niewłaściwy protokół (should be http:// or similar)

          • +
          • Brak nazwy hosta

          • +
          • podwójna sekwencja escape w ścieżce URL

          • +
          • Błędny znak w nazwie hosta; podkreślenia (underscores) są niedozwolone

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_LIFETIME_EXP squid-5.9/errors/pl/ERR_LIFETIME_EXP --- squid-5.8/errors/pl/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_LIFETIME_EXP 2023-05-01 10:40:38.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

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

          + +
          +

          przekroczony dopuszczalny czas połączenie

          +
          + +

          Squid zakończył realizację żądania, ponieważ czas jego realizacji przekroczył dopuszczalny limit.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_NO_RELAY squid-5.9/errors/pl/ERR_NO_RELAY --- squid-5.8/errors/pl/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_NO_RELAY 2023-05-01 10:40:39.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          brak 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-5.8/errors/pl/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/pl/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/pl/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:40:39.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          żądanie z dyrektywą only-if-cached dotyczyło dokumentu aktualnie nie przechowywanego przez sewer cache.

          +
          + +

          Żądanie zawierało dyrektywę only-if-cached. Dokument nie został znaleziony w zasobech serwera cache lub wymagał odświeżenia zabronionego dyrektywą only-if-cached.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/error-details.txt squid-5.9/errors/pl/error-details.txt --- squid-5.8/errors/pl/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/error-details.txt 2023-05-01 10:40:41.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/pl/ERR_PRECONDITION_FAILED squid-5.9/errors/pl/ERR_PRECONDITION_FAILED --- squid-5.8/errors/pl/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_PRECONDITION_FAILED 2023-05-01 10:40:39.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/pl/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/pl/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:40:39.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_READ_ERROR squid-5.9/errors/pl/ERR_READ_ERROR --- squid-5.8/errors/pl/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_READ_ERROR 2023-05-01 10:40:39.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          błąd odczytu

          +
          + +

          System zwrócił wartość: %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-5.8/errors/pl/ERR_READ_TIMEOUT squid-5.9/errors/pl/ERR_READ_TIMEOUT --- squid-5.8/errors/pl/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_READ_TIMEOUT 2023-05-01 10:40:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          przekroczony czas odczytu

          +
          + +

          System zwrócił wartość: %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-5.8/errors/pl/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/pl/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/pl/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:40:40.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Nie można ustanowić bezpiecznego połączenia z %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/pl/ERR_SHUTTING_DOWN squid-5.9/errors/pl/ERR_SHUTTING_DOWN --- squid-5.8/errors/pl/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_SHUTTING_DOWN 2023-05-01 10:40:40.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          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-5.8/errors/pl/ERR_SOCKET_FAILURE squid-5.9/errors/pl/ERR_SOCKET_FAILURE --- squid-5.8/errors/pl/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_SOCKET_FAILURE 2023-05-01 10:40:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Socket Failure

          +
          + +

          System zwrócił wartość: %E

          + +

          Squid nie jest w stanie otworzyć gniazdka TCP (TCP socket), prawdopodobnie z powodu przeciążenia systemu. Proszę ponowić żądanie.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_TOO_BIG squid-5.9/errors/pl/ERR_TOO_BIG --- squid-5.8/errors/pl/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_TOO_BIG 2023-05-01 10:40:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Zapytanie lub odpowiedź jest zbyt długa.

          +
          + +

          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-5.8/errors/pl/ERR_UNSUP_HTTPVERSION squid-5.9/errors/pl/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/pl/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_UNSUP_HTTPVERSION 2023-05-01 10:40:40.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Nieobsługiwana wersja HTTP

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Nieobsługiwana wersja HTTP

          +
          + +

          This Squid does not accept the HTTP version you are attempting to use.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_UNSUP_REQ squid-5.9/errors/pl/ERR_UNSUP_REQ --- squid-5.8/errors/pl/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_UNSUP_REQ 2023-05-01 10:40:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          użyta w żądaniu kombinacja metoda/protokół jest niewłaściwa

          +
          + +

          Squid nie wspiera wszystkich metod we wszystkich protokołach. Na przykład nie możesz użyć metody POST w żądaniu skierowanym do usługi Gopher.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_URN_RESOLVE squid-5.9/errors/pl/ERR_URN_RESOLVE --- squid-5.8/errors/pl/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_URN_RESOLVE 2023-05-01 10:40:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          BŁĄD

          +

          URL dla żądanego URN nie może zostać sprowadzony

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URN: %U

          + +
          +

          nie można zlokalizować URN

          +
          + +

          Proszę nie spodziewać się zbyt wiele od URNów z %T :)

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_WRITE_ERROR squid-5.9/errors/pl/ERR_WRITE_ERROR --- squid-5.8/errors/pl/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_WRITE_ERROR 2023-05-01 10:40:41.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          błąd zapisu

          +
          + +

          System zwrócił wartość: %E

          + +

          An error condition occurred while writing to the network. Please retry your request.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pl/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/pl/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/pl/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pl/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:40:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +BŁĄD: Żądany URL nie może zostać pobrany + + +
          +

          BŁĄD

          +

          Żądany URL nie może zostać pobrany

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          sprowadzony dokument ma zerowy rozmiar

          +
          + +

          Squid nie otrzymał żadnych danych w odpowiedzi na to żądanie.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_ACCESS_DENIED squid-5.9/errors/pt/ERR_ACCESS_DENIED --- squid-5.8/errors/pt/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_ACCESS_DENIED 2023-05-01 10:40:49.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Proibido o Acesso.

          +
          + +

          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-5.8/errors/pt/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/pt/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/pt/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:40:49.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          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-5.8/errors/pt/ERR_AGENT_CONFIGURE squid-5.9/errors/pt/ERR_AGENT_CONFIGURE --- squid-5.8/errors/pt/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_AGENT_CONFIGURE 2023-05-01 10:40:49.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          ERRO

          +

          Web Browser Configuration

          +
          +
          + +
          +
          +

          Your Web Browser configuration needs to be corrected to use this network.

          +
          + +

          Como encontrar essas configurações em seu navegador:

          + +
          +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-5.8/errors/pt/ERR_AGENT_WPAD squid-5.9/errors/pt/ERR_AGENT_WPAD --- squid-5.8/errors/pt/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_AGENT_WPAD 2023-05-01 10:40:49.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          ERRO

          +

          Web Browser Configuration

          +
          +
          + +
          +
          +

          Your Web Browser configuration needs to be corrected to use this network.

          +
          + +

          Como encontrar essas configurações em seu navegador:

          + +
          +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
          • +
          • Selecionar automaticamente a detecção de configurações.
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Tools -> Preferences -> Advanced -> Network -> Proxy Servers
          • +
          • Selecione configuração automática do Proxy.
          • +
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/pt/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/pt/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:40:50.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRO: Proibido o acesso ao Cache + + +
          +

          ERRO

          +

          Proibido o acesso ao Cache.

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Proibido o acesso ao Cache.

          +
          + +

          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-5.8/errors/pt/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/pt/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/pt/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:40:50.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRO: Proibido o acesso ao Gerenciador do Cache + + +
          +

          ERRO

          +

          Proibido o acesso ao Gerenciador do Cache.

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Proibido o acesso ao Gerenciador do Cache.

          +
          + +

          Sorry, you are not currently allowed to request %U from this cache manager until you have authenticated yourself.

          + +

          Por favor contate o administrador do cache se você tiver dificuldades para se autenticar ou, se você é o administrador, leia a documentação do Squid no próprio gerenciador de cache e verifique o log para mensagens de erros mais detalhadas.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_CANNOT_FORWARD squid-5.9/errors/pt/ERR_CANNOT_FORWARD --- squid-5.8/errors/pt/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_CANNOT_FORWARD 2023-05-01 10:40:50.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Cache incapaz de encaminhar esta requisição neste momento.

          +
          + +

          This request could not be forwarded to the origin server or to any parent caches.

          + +

          Some possible problems are:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_CONFLICT_HOST squid-5.9/errors/pt/ERR_CONFLICT_HOST --- squid-5.8/errors/pt/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_CONFLICT_HOST 2023-05-01 10:40:50.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_CONNECT_FAIL squid-5.9/errors/pt/ERR_CONNECT_FAIL --- squid-5.8/errors/pt/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_CONNECT_FAIL 2023-05-01 10:40:50.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Conexão com %I falhou.

          +
          + +

          O sistema retornou: %E

          + +

          The remote host or network may be down. Please try the request again.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_DIR_LISTING squid-5.9/errors/pt/ERR_DIR_LISTING --- squid-5.8/errors/pt/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_DIR_LISTING 2023-05-01 10:40:50.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Diretório: %U + + +
          +

          Diretório: %U/

          +
          +
          + +
          +

          Diretório Conteúdo:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Diretório Pai (Diretório Raiz)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_DNS_FAIL squid-5.9/errors/pt/ERR_DNS_FAIL --- squid-5.8/errors/pt/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_DNS_FAIL 2023-05-01 10:40:51.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          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

          +
          + +

          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-5.8/errors/pt/ERR_ESI squid-5.9/errors/pt/ERR_ESI --- squid-5.8/errors/pt/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_ESI 2023-05-01 10:40:51.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          O Processamento do ESI falhou.

          +
          + +

          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.

          + +

          Seu webmaster é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_FORWARDING_DENIED squid-5.9/errors/pt/ERR_FORWARDING_DENIED --- squid-5.8/errors/pt/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_FORWARDING_DENIED 2023-05-01 10:40:51.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Expedição proibida.

          +
          + +

          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-5.8/errors/pt/ERR_FTP_DISABLED squid-5.9/errors/pt/ERR_FTP_DISABLED --- squid-5.8/errors/pt/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_FTP_DISABLED 2023-05-01 10:40:51.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          FTP desabilitado

          +
          + +

          Este cache não está habilitado para FTP.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_FTP_FAILURE squid-5.9/errors/pt/ERR_FTP_FAILURE --- squid-5.8/errors/pt/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_FTP_FAILURE 2023-05-01 10:40:51.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          Ocorreu erro no protocolo FTP Na tentativa de recuperar a URL:%U

          + +

          Squid emitiu o seguinte comando FTP:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_FTP_FORBIDDEN squid-5.9/errors/pt/ERR_FTP_FORBIDDEN --- squid-5.8/errors/pt/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_FTP_FORBIDDEN 2023-05-01 10:40:52.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          Ocorreu uma falha na autenticação no FTP, na tentativa de recuperar a seguinte URL:%U

          + +

          Squid emitiu o seguinte comando FTP:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_FTP_NOT_FOUND squid-5.9/errors/pt/ERR_FTP_NOT_FOUND --- squid-5.8/errors/pt/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_FTP_NOT_FOUND 2023-05-01 10:40:52.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          A seguite URL não pode ser recuperada (não foi encontrada): %U

          + +

          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-5.8/errors/pt/ERR_FTP_PUT_CREATED squid-5.9/errors/pt/ERR_FTP_PUT_CREATED --- squid-5.8/errors/pt/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_FTP_PUT_CREATED 2023-05-01 10:40:52.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT obteve sucesso. + + +
          +

          Sucesso na execução

          +

          Criado arquivo

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_FTP_PUT_ERROR squid-5.9/errors/pt/ERR_FTP_PUT_ERROR --- squid-5.8/errors/pt/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_FTP_PUT_ERROR 2023-05-01 10:40:52.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERRO: Erro no FTP upload + + +
          +

          ERRO

          +

          O upload do FTP PUT falhou.

          +
          +
          + +
          +

          Ocorreu erro no protocolo FTP Na tentativa de recuperar a URL:%U

          + +

          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-5.8/errors/pt/ERR_FTP_PUT_MODIFIED squid-5.9/errors/pt/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/pt/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_FTP_PUT_MODIFIED 2023-05-01 10:40:52.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT obteve sucesso. + + +
          +

          Sucesso na execução

          +

          Arquivo atualizado

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_FTP_UNAVAILABLE squid-5.9/errors/pt/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/pt/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_FTP_UNAVAILABLE 2023-05-01 10:40:52.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The FTP server was too busy to retrieve the URL: %U

          + +

          Squid emitiu o seguinte comando FTP:

          + +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_GATEWAY_FAILURE squid-5.9/errors/pt/ERR_GATEWAY_FAILURE --- squid-5.8/errors/pt/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_GATEWAY_FAILURE 2023-05-01 10:40:53.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          O Gateway do Proxy Falhou.

          +
          + +

          Uma falha não recuperável interna ou problema de configuração impede essa solicitação seja concluída.

          + +

          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-5.8/errors/pt/ERR_ICAP_FAILURE squid-5.9/errors/pt/ERR_ICAP_FAILURE --- squid-5.8/errors/pt/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_ICAP_FAILURE 2023-05-01 10:40:53.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Erro do protocolo ICAP.

          +
          + +

          O sistema retornou: %E

          + +

          This means that some aspect of the ICAP communication failed.

          + +

          Some possible problems are:

          +
            +
          • The ICAP server is not reachable.

          • +
          • Uma resposta ilegal foi recebida do servidor ICAP.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_INVALID_REQ squid-5.9/errors/pt/ERR_INVALID_REQ --- squid-5.8/errors/pt/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_INVALID_REQ 2023-05-01 10:40:53.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          Erro de Requisição Inválida foi encontrado enquanto tentava proceder a requisição.

          + +
          +
          %R
          +
          + +

          Some possible problems are:

          +
            +
          • Método desconhecido ou faltando (GET, POST)

          • +
          • 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 Esperar: recurso está sendo feita a partir de um programa HTTP/1.0.

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_INVALID_RESP squid-5.9/errors/pt/ERR_INVALID_RESP --- squid-5.8/errors/pt/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_INVALID_RESP 2023-05-01 10:40:53.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          Erro de Resposta Inválida foi encontrado enquanto tentava proceder a requisição.

          + +
          +
          %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-5.8/errors/pt/ERR_INVALID_URL squid-5.9/errors/pt/ERR_INVALID_URL --- squid-5.8/errors/pt/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_INVALID_URL 2023-05-01 10:40:53.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          URL inválida

          +
          + +

          Some aspect of the requested URL is incorrect.

          + +

          Some possible problems are:

          +
            +
          • Protocolo de acesso incorreto ou faltando (deve ser http:// ou similar)

          • +
          • Faltou o hostname

          • +
          • Escape-duplo Ilegal no URL-Path

          • +
          • Hostname com caracter inválido; não são permitidos underscores.

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_LIFETIME_EXP squid-5.9/errors/pt/ERR_LIFETIME_EXP --- squid-5.8/errors/pt/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_LIFETIME_EXP 2023-05-01 10:40:53.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          O tempo limite de conexão expirou

          +
          + +

          Squid terminou a requisição porque excedeu o tempo máximo permitido.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_NO_RELAY squid-5.9/errors/pt/ERR_NO_RELAY --- squid-5.8/errors/pt/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_NO_RELAY 2023-05-01 10:40:54.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Sem Wais

          +
          + +

          There is no WAIS Relay host defined for this Cache! Yell at the administrator.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/pt/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/pt/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:40:54.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          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.

          +
          + +

          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-5.8/errors/pt/error-details.txt squid-5.9/errors/pt/error-details.txt --- squid-5.8/errors/pt/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/error-details.txt 2023-05-01 10:40:56.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/pt/ERR_PRECONDITION_FAILED squid-5.9/errors/pt/ERR_PRECONDITION_FAILED --- squid-5.8/errors/pt/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_PRECONDITION_FAILED 2023-05-01 10:40:54.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Falha na Pré-condição.

          +
          + +

          This means:

          +
          +

          At least one precondition specified by the HTTP client in the request header has failed.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/pt/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/pt/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:40:54.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_READ_ERROR squid-5.9/errors/pt/ERR_READ_ERROR --- squid-5.8/errors/pt/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_READ_ERROR 2023-05-01 10:40:54.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Erro de Leitura

          +
          + +

          O sistema retornou: %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-5.8/errors/pt/ERR_READ_TIMEOUT squid-5.9/errors/pt/ERR_READ_TIMEOUT --- squid-5.8/errors/pt/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_READ_TIMEOUT 2023-05-01 10:40:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Excedeu o tempo limite para leitura (timeout)

          +
          + +

          O sistema retornou: %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-5.8/errors/pt/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/pt/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/pt/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:40:55.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Falha ao estabelecer uma conexão segura com %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/pt/ERR_SHUTTING_DOWN squid-5.9/errors/pt/ERR_SHUTTING_DOWN --- squid-5.8/errors/pt/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_SHUTTING_DOWN 2023-05-01 10:40:55.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          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-5.8/errors/pt/ERR_SOCKET_FAILURE squid-5.9/errors/pt/ERR_SOCKET_FAILURE --- squid-5.8/errors/pt/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_SOCKET_FAILURE 2023-05-01 10:40:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Falha no Socket

          +
          + +

          O sistema retornou: %E

          + +

          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-5.8/errors/pt/ERR_TOO_BIG squid-5.9/errors/pt/ERR_TOO_BIG --- squid-5.8/errors/pt/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_TOO_BIG 2023-05-01 10:40:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          A requisição ou resposta é muito grande.

          +
          + +

          Se você estiver fazendo uma requisição POST ou PUT, então o corpo de sua requisição (o que você está tentando enviar) é muito grande.

          +

          Se você estiver fazendo uma requisição GET, então o arquivo que esta tentando baixar é muito grande.

          +

          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-5.8/errors/pt/ERR_UNSUP_HTTPVERSION squid-5.9/errors/pt/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/pt/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_UNSUP_HTTPVERSION 2023-05-01 10:40:55.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          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-5.8/errors/pt/ERR_UNSUP_REQ squid-5.9/errors/pt/ERR_UNSUP_REQ --- squid-5.8/errors/pt/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_UNSUP_REQ 2023-05-01 10:40:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Método ou protocolo não suportado.

          +
          + +

          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-5.8/errors/pt/ERR_URN_RESOLVE squid-5.9/errors/pt/ERR_URN_RESOLVE --- squid-5.8/errors/pt/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_URN_RESOLVE 2023-05-01 10:40:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URN solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          Uma URL para requisição URN não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URN: %U

          + +
          +

          Não pode resolver a URN

          +
          + +

          Não espere muita coisa de URNS em %T :-)

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_WRITE_ERROR squid-5.9/errors/pt/ERR_WRITE_ERROR --- squid-5.8/errors/pt/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_WRITE_ERROR 2023-05-01 10:40:56.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Erro de gravação

          +
          + +

          O sistema retornou: %E

          + +

          An error condition occurred while writing to the network. Please retry your request.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/pt/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/pt/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:40:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL solicitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL solicitada não pode ser recuperada

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Resposta com tamanho zero

          +
          + +

          Squid não recebeu nenhum dado para esta requisição.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_ACCESS_DENIED squid-5.9/errors/pt-br/ERR_ACCESS_DENIED --- squid-5.8/errors/pt-br/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_ACCESS_DENIED 2023-05-01 10:40:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Acesso negado.

          +
          + +

          A configuração do controle de acesso impede que sua requisição seja permitida neste momento. Por favor, contate seu provedor de serviço se você acha que isso está incorreto.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/pt-br/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/pt-br/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:40:42.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Quota de tempo Excedida.

          +
          + +

          Este proxy limita seu tempo conectado com uma cota. Sua cota de tempo está vazia agora mas será recarregada quando o período de tempo configurado recomeçar.

          +

          Esses limites foram estabelecidos pelo Provedor de Serviço Internet que opera este cache. Por favor, contate-os diretamente se você acha que isso é um erro.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_AGENT_CONFIGURE squid-5.9/errors/pt-br/ERR_AGENT_CONFIGURE --- squid-5.8/errors/pt-br/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_AGENT_CONFIGURE 2023-05-01 10:40:42.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Configuração do Navegador Web + + +
          +

          ERRO

          +

          Configuração do Navegador Web

          +
          +
          + +
          +
          +

          A configuração de seu navegador precisa ser corrigida para usar esta rede.

          +
          + +

          Como encontrar estas configurações no seu navegador:

          + +
          +For Firefox browsers go to: +
            +
          • Ferramentas -> Opções -> Avançado -> Rede -> Configurações da Conexão
          • +
          • Na caixa HTTP proxy digite o nome do proxy %h e porta %b.
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Ferramentas -> Opções de Internet -> Conexão -> Configurações da LAN ->Proxy
          • +
          • Na caixa HTTP proxy digite o nome do proxy %h e porta %b.
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Ferramentas -> Preferências -> Avançado -> Rede -> Servidores Proxy
          • +
          • Na caixa HTTP proxy digite o nome do proxy %h e porta %b.
          • +
          +
          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_AGENT_WPAD squid-5.9/errors/pt-br/ERR_AGENT_WPAD --- squid-5.8/errors/pt-br/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_AGENT_WPAD 2023-05-01 10:40:42.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Configuração do Navegador Web + + +
          +

          ERRO

          +

          Configuração do Navegador Web

          +
          +
          + +
          +
          +

          A configuração de seu navegador precisa ser corrigida para usar esta rede.

          +
          + +

          Como encontrar estas configurações no seu navegador:

          + +
          +For Firefox browsers go to: +
            +
          • Ferramentas -> Opções -> Avançado -> Rede -> Configurações da Conexão
          • +
          • Selecionar configurações de auto-detecção de proxy para esta rede
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Ferramentas -> Opções de Internet -> Conexão -> Configurações da LAN ->Proxy
          • +
          • Selecione Detectar configurações automaticamente
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Ferramentas -> Preferências -> Avançado -> Rede -> Servidores Proxy
          • +
          • Selecione Usar configuração automática de proxy
          • +
          +
          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/pt-br/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/pt-br/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:40:42.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRO: Acesso negado ao cache + + +
          +

          ERRO

          +

          Acesso negado ao cache.

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Acesso negado ao cache.

          +
          + +

          Desculpe. Atualmente, você não tem permissáo para requisitar %U deste cache até que você tenha se autenticado.

          + +

          Por favor, contate o administrador do cache se você está tendo dificuldades em se autenticar ou mude sua senha.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/pt-br/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/pt-br/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:40:42.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRO: Acesso negado ao gerenciador de cache + + +
          +

          ERRO

          +

          Acesso negado ao gerenciador de cache.

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Acesso negado ao gerenciador de cache.

          +
          + +

          Desculpe. Atualmente, você não tem permissão para requisitar %U deste gerenciador de cache até que você tenha se autenticado.

          + +

          Por favor, contate o administrador do cache se você está tendo dificuldades em se autenticar ou, se você é o administrador, leia a documentação do Squid na interface de gerenciamento de cache e cheque o log para maiores detalhes sobre mensagens de erro.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_CANNOT_FORWARD squid-5.9/errors/pt-br/ERR_CANNOT_FORWARD --- squid-5.8/errors/pt-br/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_CANNOT_FORWARD 2023-05-01 10:40:42.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Impossível encaminhar esta requisição nesse momento.

          +
          + +

          Esta requisição não pode ser repassada para o servidor de origem ou para qualquer cache pai.

          + +

          Alguns dos possíveis problemas são:

          +
            +
          • Uma conexão à Internet necessária para acessar estes servidores de origem de domínios parece estar fora.
          • +
          • Todos os caches-pais configurados parecem estar fora de alcance no momento.
          • +
          • O administrador pode não ter permitido que este cache fizesse conexoes diretas a servidores de origem.
          • +
          + +

          Seu administrador do cache é %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_CONFLICT_HOST squid-5.9/errors/pt-br/ERR_CONFLICT_HOST --- squid-5.8/errors/pt-br/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_CONFLICT_HOST 2023-05-01 10:40:43.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +
          Conflito de máquina de URI
          +
          + +

          Isto significa que o nome de domínio que você está tentando acessar aparentemente não existe mais na máquina onde você está requisitando.

          + +

          Alguns dos possíveis problemas são:

          +
            +
          • O domínio pode ter se movido muito recentemente. Tentar de novo pode resolver isto.
          • +
          • O website pode exigir que você use uma versão baseada no país local. Usar o(s) servidore(s) DNS fornecido(s) por seu provedor pode resolver isto.
          • +
          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_CONNECT_FAIL squid-5.9/errors/pt-br/ERR_CONNECT_FAIL --- squid-5.8/errors/pt-br/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_CONNECT_FAIL 2023-05-01 10:40:43.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Conexão para %I falhou.

          +
          + +

          O sistema retornou: %E

          + +

          O host ou rede remota pode estar fora do ar. Por favor, faça a requisição novamente.

          + +

          Seu administrador do cache é %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_DIR_LISTING squid-5.9/errors/pt-br/ERR_DIR_LISTING --- squid-5.8/errors/pt-br/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_DIR_LISTING 2023-05-01 10:40:43.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Diretório: %U + + +
          +

          Diretório: %U/

          +
          +
          + +
          +

          Conteúdo do diretório:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Diretório pai (Diretório raiz)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_DNS_FAIL squid-5.9/errors/pt-br/ERR_DNS_FAIL --- squid-5.8/errors/pt-br/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_DNS_FAIL 2023-05-01 10:40:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Impossível determinar o endereço IP do nome de host %H

          +
          + +

          O servidor DNS retornou:

          +
          +
          %z
          +
          + +

          Isto significa que o cache não pode resolver o nome de host contido na URL. Verifique se o endereço está correto.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_ESI squid-5.9/errors/pt-br/ERR_ESI --- squid-5.8/errors/pt-br/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_ESI 2023-05-01 10:40:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          O processamento de ESI falhou.

          +
          + +

          O processador ESI retornou:

          +
          +
          %Z
          +
          + +

          Isto significa que o surrogate não pode processar o modelo do ESI. Por favor, informe este erro ao webmaster.

          + +

          Seu webmaster é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_FORWARDING_DENIED squid-5.9/errors/pt-br/ERR_FORWARDING_DENIED --- squid-5.8/errors/pt-br/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_FORWARDING_DENIED 2023-05-01 10:40:43.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Encaminhamento Negado.

          +
          + +

          Este cache não encaminhará sua requisição porque está tentando forçar um relacionamento. Talvez o cliente em %i é um cache que está mal configurado.

          + +

          Seu administrador do cache é %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_FTP_DISABLED squid-5.9/errors/pt-br/ERR_FTP_DISABLED --- squid-5.8/errors/pt-br/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_FTP_DISABLED 2023-05-01 10:40:44.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          FTP está Desabilitado

          +
          + +

          Esse cache não suporta FTP.

          + +

          Seu administrador do cache é %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_FTP_FAILURE squid-5.9/errors/pt-br/ERR_FTP_FAILURE --- squid-5.8/errors/pt-br/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_FTP_FAILURE 2023-05-01 10:40:44.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          Um erro no protocolo FTP ocorreu ao tentar recuperar a URL: %U

          + +

          Squid enviou o seguinte comando FTP:

          +
          +
          %f
          +
          + +

          O servidor respondeu com:

          +
          +
          %F
          +
          %g
          +
          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_FTP_FORBIDDEN squid-5.9/errors/pt-br/ERR_FTP_FORBIDDEN --- squid-5.8/errors/pt-br/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_FTP_FORBIDDEN 2023-05-01 10:40:44.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          Ocorreu uma falha na autenticação do FTP ao tentar recuperar a URL: %U

          + +

          Squid enviou o seguinte comando FTP:

          +
          +
          %f
          +
          + +

          O servidor respondeu com:

          +
          +
          %F
          +
          %g
          +
          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_FTP_NOT_FOUND squid-5.9/errors/pt-br/ERR_FTP_NOT_FOUND --- squid-5.8/errors/pt-br/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_FTP_NOT_FOUND 2023-05-01 10:40:44.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          A seguinte URL não pôde ser recuperada: %U

          + +

          Squid enviou o seguinte comando FTP:

          +
          +
          %f
          +
          + +

          O servidor respondeu com:

          +
          +
          %F
          +
          %g
          +
          + +

          Isto pode ser causa de uma URL de FTP com um caminho absoluto (que não é conforme com a RFC 1738). Se esta for a causa, então o arquivo pode ser encontrado em %B.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_FTP_PUT_CREATED squid-5.9/errors/pt-br/ERR_FTP_PUT_CREATED --- squid-5.8/errors/pt-br/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_FTP_PUT_CREATED 2023-05-01 10:40:44.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +PUT FTP bem sucedido. + + +
          +

          Operação bem sucedida

          +

          Arquivo criado

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_FTP_PUT_ERROR squid-5.9/errors/pt-br/ERR_FTP_PUT_ERROR --- squid-5.8/errors/pt-br/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_FTP_PUT_ERROR 2023-05-01 10:40:45.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERRO: upload via FTP falhou + + +
          +

          ERRO

          +

          Upload de FTP PUT falhou

          +
          +
          + +
          +

          Um erro no protocolo FTP ocorreu ao tentar recuperar a URL: %U

          + +

          Squid enviou o seguinte comando FTP:

          +
          +
          %f
          +
          + +

          O servidor respondeu com:

          +
          +
          %F
          +
          + +

          Isto significa que o servidor FTP não tem permissão ou espaço suficiente para armazenar o arquivo. Verifique o caminho, permissão, espaço em disco e tente novamente.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_FTP_PUT_MODIFIED squid-5.9/errors/pt-br/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/pt-br/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_FTP_PUT_MODIFIED 2023-05-01 10:40:45.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +PUT FTP bem sucedido. + + +
          +

          Operação bem sucedida

          +

          Arquivo atualizado

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_FTP_UNAVAILABLE squid-5.9/errors/pt-br/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/pt-br/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_FTP_UNAVAILABLE 2023-05-01 10:40:45.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O servidor FTP estava muito ocupado para recuperar a URL: %U

          + +

          Squid enviou o seguinte comando FTP:

          + +
          +
          %f
          +
          + +

          O servidor respondeu com:

          +
          +
          %F
          +
          %g
          +
          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_GATEWAY_FAILURE squid-5.9/errors/pt-br/ERR_GATEWAY_FAILURE --- squid-5.8/errors/pt-br/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_GATEWAY_FAILURE 2023-05-01 10:40:45.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Falha de Gateway Proxy

          +
          + +

          Uma falha interna ou problema de configuração irrecuperáveis impedem que esta requisição seja completada.

          + +

          Isto pode ser devido aos limites estabelecidos pelo provedor de internet que opera este cache. Por favor contate-os para mais informações.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_ICAP_FAILURE squid-5.9/errors/pt-br/ERR_ICAP_FAILURE --- squid-5.8/errors/pt-br/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_ICAP_FAILURE 2023-05-01 10:40:45.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Erro de protocolo ICAP.

          +
          + +

          O sistema retornou: %E

          + +

          Isto significa que alguma característica da comunicação ICAP falhou.

          + +

          Alguns dos possíveis problemas são:

          +
            +
          • O servidor ICAP não é alcançável.

          • +
          • Uma resposta ilegal foi recebida do servidor ICAP.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_INVALID_REQ squid-5.9/errors/pt-br/ERR_INVALID_REQ --- squid-5.8/errors/pt-br/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_INVALID_REQ 2023-05-01 10:40:45.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          Requisição Inválida erro encontrado ao tentar processar a requisição:

          + +
          +
          %R
          +
          + +

          Alguns dos possíveis problemas são:

          +
            +
          • Método de requisição faltando ou desconhecido.

          • +
          • URL faltando.

          • +
          • Identificador HTTP faltando (HTTP/1.0).

          • +
          • Requisição é muito grande.

          • +
          • Content-Length faltando para requisições POST ou PUT.

          • +
          • Caracter ilegal no nome de host; underscores não são permitidos.

          • +
          • HTTP/1.1 Expect: requisição proveniente de um software HTTP/1.0.

          • +
          + +

          Seu administrador do cache é %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_INVALID_RESP squid-5.9/errors/pt-br/ERR_INVALID_RESP --- squid-5.8/errors/pt-br/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_INVALID_RESP 2023-05-01 10:40:46.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          Resposta Inválida erro encontrado ao tentar processar a requisição:

          + +
          +
          %R
          +
          + +

          A mensagem da resposta HTTP recebida do servidor contatado não pode ser entendida ou estava mal-formada. Por favor, contate o administrador do site.

          + +

          Seu administrador do cache pode providenciar com maiores detalhes a exata natureza do problema, caso seja necessário.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_INVALID_URL squid-5.9/errors/pt-br/ERR_INVALID_URL --- squid-5.8/errors/pt-br/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_INVALID_URL 2023-05-01 10:40:46.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          URL inválida

          +
          + +

          Alguma característica da URL requisitada é incorreta.

          + +

          Alguns dos possíveis problemas são:

          +
            +
          • Protocolo de acesso faltando ou incorreto (deveria ser http:// ou semelhante)

          • +
          • Nome do host faltando

          • +
          • Escape duplo ilegal na URL-Path

          • +
          • Caracter ilegal no nome de host; underscores não são permitidos.

          • +
          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_LIFETIME_EXP squid-5.9/errors/pt-br/ERR_LIFETIME_EXP --- squid-5.8/errors/pt-br/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_LIFETIME_EXP 2023-05-01 10:40:46.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Tempo de vida da conexão expirou

          +
          + +

          Squid terminou a requisição porque foi excedido o tempo de vida máximo da conexão.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_NO_RELAY squid-5.9/errors/pt-br/ERR_NO_RELAY --- squid-5.8/errors/pt-br/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_NO_RELAY 2023-05-01 10:40:46.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Sem Wais Relay

          +
          + +

          Não há nenhum host de relay de WAIS definido para esse Cache! Contate o administrador.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/pt-br/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/pt-br/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:40:46.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Um documento válido não foi encontrado no cache e a diretiva only-if-cached foi especificada.

          +
          + +

          Você enviou uma requisição com a diretiva de controle de cache only-if-cached. O documento não foi encontrado no cache ou o cache requer uma revalidação, que é proibida pela diretiva only-if-cached.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/error-details.txt squid-5.9/errors/pt-br/error-details.txt --- squid-5.8/errors/pt-br/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/error-details.txt 2023-05-01 10:40:49.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/pt-br/ERR_PRECONDITION_FAILED squid-5.9/errors/pt-br/ERR_PRECONDITION_FAILED --- squid-5.8/errors/pt-br/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_PRECONDITION_FAILED 2023-05-01 10:40:47.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Précondição falhou.

          +
          + +

          Isto significa:

          +
          +

          Pelo menos uma pré-condição especificada pelo cliente HTTP no cabeçalho da requisição falhou.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/pt-br/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/pt-br/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:40:47.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_READ_ERROR squid-5.9/errors/pt-br/ERR_READ_ERROR --- squid-5.8/errors/pt-br/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_READ_ERROR 2023-05-01 10:40:47.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Erro de Leitura

          +
          + +

          O sistema retornou: %E

          + +

          Ocorreu uma condição de erro ao ler dados da rede. Por favor, repita sua requisição.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_READ_TIMEOUT squid-5.9/errors/pt-br/ERR_READ_TIMEOUT --- squid-5.8/errors/pt-br/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_READ_TIMEOUT 2023-05-01 10:40:47.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Tempo de leitura esgotado

          +
          + +

          O sistema retornou: %E

          + +

          Tempo esgotado esperando a leitura de dados pela rede. A rede ou o servidor pode estar desconectado ou congestionado. Por favor, repita sua requisição.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/pt-br/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/pt-br/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:40:47.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Falha ao estabelecer uma conexão segura com %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Este proxy e o host remoto falharam em negociar uma configuração de segurança aceitável entre si para atender sua requisição. É possível que o host remoto não suporte conexões seguras ou que o proxy não está satisfeito com as credenciais de segurança do host.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_SHUTTING_DOWN squid-5.9/errors/pt-br/ERR_SHUTTING_DOWN --- squid-5.8/errors/pt-br/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_SHUTTING_DOWN 2023-05-01 10:40:47.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +

          Este cache está sendo desligado e não pode atender sua requisição neste momento. Por favor, tente novamente em breve.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_SOCKET_FAILURE squid-5.9/errors/pt-br/ERR_SOCKET_FAILURE --- squid-5.8/errors/pt-br/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_SOCKET_FAILURE 2023-05-01 10:40:48.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Falha de socket

          +
          + +

          O sistema retornou: %E

          + +

          Squid não pode criar um socket TCP, presumivelmente devido a uma carga excessiva. Por favor, repita sua requisição.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_TOO_BIG squid-5.9/errors/pt-br/ERR_TOO_BIG --- squid-5.8/errors/pt-br/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_TOO_BIG 2023-05-01 10:40:48.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          A requisição ou a resposta é muito grande.

          +
          + +

          Se você está fazendo uma requisição POST ou PUT, então o item que você está tentando enviar é muito grande.

          +

          Se você está fazendo uma requisição GET, então o item que você está tentando baixar é muito grande.

          +

          Esses limites foram estabelecidos pelo Provedor de Serviço Internet que opera este cache. Por favor, contate-os diretamente se você acha que isso é um erro.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_UNSUP_HTTPVERSION squid-5.9/errors/pt-br/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/pt-br/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_UNSUP_HTTPVERSION 2023-05-01 10:40:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          Versão do HTTP não é suportada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Versão do HTTP não é suportada

          +
          + +

          Este Squid não aceita a versão do HTTP que você está tentando usar.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_UNSUP_REQ squid-5.9/errors/pt-br/ERR_UNSUP_REQ --- squid-5.8/errors/pt-br/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_UNSUP_REQ 2023-05-01 10:40:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Método e Protocolo de Requisição Não-Suportado

          +
          + +

          Squid não suporta todos os métodos de requisição para todos os protocolos de acesso. Por exemplo, você não pode emitir uma requisição POST ao protocolo Gopher.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_URN_RESOLVE squid-5.9/errors/pt-br/ERR_URN_RESOLVE --- squid-5.8/errors/pt-br/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_URN_RESOLVE 2023-05-01 10:40:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URN requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          Uma URL para a URN requisitada não pode ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URN: %U

          + +
          +

          Não é possível resolver URN

          +
          + +

          Olha, não espere muito por URNs em %T :)

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_WRITE_ERROR squid-5.9/errors/pt-br/ERR_WRITE_ERROR --- squid-5.8/errors/pt-br/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_WRITE_ERROR 2023-05-01 10:40:48.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Erro ao enviar

          +
          + +

          O sistema retornou: %E

          + +

          Ocorreu uma condição de erro ao escrever na rede. Por favor, repita sua requisição.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/pt-br/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/pt-br/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/pt-br/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/pt-br/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:40:49.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERRO: A URL requisitada não pode ser recuperada + + +
          +

          ERRO

          +

          A URL requisitada não pôde ser recuperada

          +
          +
          + +
          +

          O seguinte erro foi encontrado ao tentar recuperar a URL: %U

          + +
          +

          Resposta de tamanho zero

          +
          + +

          Squid não recebeu nenhum dado para essa requisição.

          + +

          Seu administrador do cache é %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_ACCESS_DENIED squid-5.9/errors/ro/ERR_ACCESS_DENIED --- squid-5.8/errors/ro/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_ACCESS_DENIED 2023-05-01 10:40:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Acces interzis.

          +
          + +

          Configuraţia de control al accesului împiedică ca cererea dumneavoastră să fie permisă în acest moment. Vă rugăm contactaţi furnizorul de servicii dacă credeţi că acest lucru nu este corect.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/ro/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/ro/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:40:57.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          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-5.8/errors/ro/ERR_AGENT_CONFIGURE squid-5.9/errors/ro/ERR_AGENT_CONFIGURE --- squid-5.8/errors/ro/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_AGENT_CONFIGURE 2023-05-01 10:40:57.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Configurarea navigatorului de internet + + +
          +

          EROARE

          +

          Configurarea navigatorului de internet

          +
          +
          + +
          +
          +

          Configurarea navigatorului de internet trebuie modificată pentru a putea utiliza această reţea.

          +
          + +

          Cum să găseşti aceste setări în navigatorul tău:

          + +
          +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.
          • +
          +
          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_AGENT_WPAD squid-5.9/errors/ro/ERR_AGENT_WPAD --- squid-5.8/errors/ro/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_AGENT_WPAD 2023-05-01 10:40:57.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Configurarea navigatorului de internet + + +
          +

          EROARE

          +

          Configurarea navigatorului de internet

          +
          +
          + +
          +
          +

          Configurarea navigatorului de internet trebuie modificată pentru a putea utiliza această reţea.

          +
          + +

          Cum să găseşti aceste setări în navigatorul tău:

          + +
          +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
          • +
          • Selectează Detectează automat setările
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Tools -> Preferences -> Advanced -> Network -> Proxy Servers
          • +
          • Selectează Configurare pentru proxy automată
          • +
          +
          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/ro/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/ro/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:40:57.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +EROARE: Interzis accesul la Cache + + +
          +

          EROARE

          +

          Interzis accesul la cache.

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Interzis accesul la cache.

          +
          + +

          Ne pare rău, nu aveţi momentan permisiunea să accesaţi %U din acest cache până când nu vă autentificaţi.

          + +

          Please contact the cache administrator if you have difficulties authenticating yourself.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/ro/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/ro/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:40:57.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +EROARE: Interzis accesul la Managerul de Cache + + +
          +

          EROARE

          +

          Interzis accesul la Managerul de cache.

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Interzis accesul la Managerul de cache.

          +
          + +

          Ne pare rău, nu aveţi momentan permisiunea de a face cererea %U de la acest cache manager până când nu vă autentificaţi.

          + +

          Vă rugăm contactaţi administratorul cache-ului dacă aveţi dificultăţi în a vă autentifica sau, dacă sunteţi administratorul, citiţi documentaţia Squid despre interfaţa cache managerului şi verificaţi jurnalul cache pentru mesaje de eroare mai detaliate.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_CANNOT_FORWARD squid-5.9/errors/ro/ERR_CANNOT_FORWARD --- squid-5.8/errors/ro/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_CANNOT_FORWARD 2023-05-01 10:40:57.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Administratorul cache-ului este %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_CONFLICT_HOST squid-5.9/errors/ro/ERR_CONFLICT_HOST --- squid-5.8/errors/ro/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_CONFLICT_HOST 2023-05-01 10:40:58.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_CONNECT_FAIL squid-5.9/errors/ro/ERR_CONNECT_FAIL --- squid-5.8/errors/ro/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_CONNECT_FAIL 2023-05-01 10:40:58.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Conexiunea la %I a eşuat.

          +
          + +

          Sistemul de operare a returnat mesajul: %E

          + +

          Calculatorul sau reţeaua destinaţie s-ar putea să fie inoperabile. Vă rugăm să încercaţi cererea din nou.

          + +

          Administratorul cache-ului este %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_DIR_LISTING squid-5.9/errors/ro/ERR_DIR_LISTING --- squid-5.8/errors/ro/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_DIR_LISTING 2023-05-01 10:40:58.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directorul: %U + + +
          +

          Directorul: %U/

          +
          +
          + +
          +

          Conţinutul directorului:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Director părinte (Director rădăcină)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_DNS_FAIL squid-5.9/errors/ro/ERR_DNS_FAIL --- squid-5.8/errors/ro/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_DNS_FAIL 2023-05-01 10:40:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Nu pot determina adresa IP din numele host-ului pentru %H

          +
          + +

          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ă.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_ESI squid-5.9/errors/ro/ERR_ESI --- squid-5.8/errors/ro/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_ESI 2023-05-01 10:40:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Procesarea ESI a eşuat.

          +
          + +

          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.

          + +

          Webmaster-ul este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_FORWARDING_DENIED squid-5.9/errors/ro/ERR_FORWARDING_DENIED --- squid-5.8/errors/ro/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_FORWARDING_DENIED 2023-05-01 10:40:58.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Înaintarea cererii este interzisă.

          +
          + +

          Acest cache nu va înainta cererea dumneavoastră din cauză că încearcă să stabilească o relaţie de echivalenţă. Poate că clientul %i este un cache care a fost configurat greşit.

          + +

          Administratorul cache-ului este %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_FTP_DISABLED squid-5.9/errors/ro/ERR_FTP_DISABLED --- squid-5.8/errors/ro/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_FTP_DISABLED 2023-05-01 10:40:59.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          FTP este dezactivat

          +
          + +

          Acest cache nu suportă protocolul FTP.

          + +

          Administratorul cache-ului este %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_FTP_FAILURE squid-5.9/errors/ro/ERR_FTP_FAILURE --- squid-5.8/errors/ro/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_FTP_FAILURE 2023-05-01 10:40:59.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          O eroare în protocolul FTP a survenit în timp ce se încerca accesarea URL-ului: %U

          + +

          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-5.8/errors/ro/ERR_FTP_FORBIDDEN squid-5.9/errors/ro/ERR_FTP_FORBIDDEN --- squid-5.8/errors/ro/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_FTP_FORBIDDEN 2023-05-01 10:40:59.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          Autentificarea FTP a eşuat în timp ce se încerca accesarea URL-ului: %U

          + +

          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-5.8/errors/ro/ERR_FTP_NOT_FOUND squid-5.9/errors/ro/ERR_FTP_NOT_FOUND --- squid-5.8/errors/ro/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_FTP_NOT_FOUND 2023-05-01 10:40:59.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          URL-ul următor nu a putut fi accesat: %U

          + +

          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.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_FTP_PUT_CREATED squid-5.9/errors/ro/ERR_FTP_PUT_CREATED --- squid-5.8/errors/ro/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_FTP_PUT_CREATED 2023-05-01 10:40:59.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operaţie reuşită

          +

          Fişierul a fost creat

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_FTP_PUT_ERROR squid-5.9/errors/ro/ERR_FTP_PUT_ERROR --- squid-5.8/errors/ro/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_FTP_PUT_ERROR 2023-05-01 10:41:00.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +EROARE: Operaţia FTP de încărcare a eşuat + + +
          +

          EROARE

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          O eroare în protocolul FTP a survenit în timp ce se încerca accesarea URL-ului: %U

          + +

          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.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_FTP_PUT_MODIFIED squid-5.9/errors/ro/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/ro/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_FTP_PUT_MODIFIED 2023-05-01 10:41:00.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operaţie reuşită

          +

          Fişierul a fost actualizat

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_FTP_UNAVAILABLE squid-5.9/errors/ro/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/ro/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_FTP_UNAVAILABLE 2023-05-01 10:41:00.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          Serverul FTP a fost prea ocupat pentru a accesa URL-ul: %U

          + +

          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-5.8/errors/ro/ERR_GATEWAY_FAILURE squid-5.9/errors/ro/ERR_GATEWAY_FAILURE --- squid-5.8/errors/ro/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_GATEWAY_FAILURE 2023-05-01 10:41:00.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          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.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_ICAP_FAILURE squid-5.9/errors/ro/ERR_ICAP_FAILURE --- squid-5.8/errors/ro/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_ICAP_FAILURE 2023-05-01 10:41:00.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Eroare în protocolul ICAP.

          +
          + +

          Sistemul de operare a returnat mesajul: %E

          + +

          Aceasta însemnă că o parte din comunicarea ICAP a eşuat.

          + +

          Unele posibile probleme sunt:

          +
            +
          • Serverul ICAP nu poate fi contactat.

          • +
          • S-a recepţionat un răspuns ilegal de la serverul ICAP.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_INVALID_REQ squid-5.9/errors/ro/ERR_INVALID_REQ --- squid-5.8/errors/ro/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_INVALID_REQ 2023-05-01 10:41:00.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          Eroarea Cerere invalidă a fost întâlnită în timp ce se încerca procesarea cererii:

          + +
          +
          %R
          +
          + +

          Unele posibile probleme sunt:

          +
            +
          • Metoda de cerere lipseşte sau nu este cunoscută.

          • +
          • Lipseşte URL-ul.

          • +
          • Lipseşte identificatorul HTTP (HTTP/1.0).

          • +
          • Cererea este prea mare.

          • +
          • Content-Length lipseşte pentru cererile POST sau PUT.

          • +
          • Caracter ilegal în numele staţiei; liniuţele de subliniere nu sunt permise.

          • +
          • HTTP/1.1 Capabilitatea Expect: este cerută de software HTTP/1.0.

          • +
          + +

          Administratorul cache-ului este %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_INVALID_RESP squid-5.9/errors/ro/ERR_INVALID_RESP --- squid-5.8/errors/ro/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_INVALID_RESP 2023-05-01 10:41:01.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          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.

          + +

          Administratorul cache-ului vă poate oferi mai multe detalii în legătură cu natura exactă a problemei dacă este nevoie.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_INVALID_URL squid-5.9/errors/ro/ERR_INVALID_URL --- squid-5.8/errors/ro/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_INVALID_URL 2023-05-01 10:41:01.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          URL invalid

          +
          + +

          O parte a URL-ului cerut este incorectă.

          + +

          Unele posibile probleme sunt:

          +
            +
          • Protocolul de acces lipseşte sau nu este corect (ar trebui să fie http:// sau similar)

          • +
          • Lipseşte numele staţiei

          • +
          • Secvenţa escape-dublu este ilegală în calea URL

          • +
          • Caracter ilegal în numele staţiei; liniuţele de subliniere nu sunt permise.

          • +
          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_LIFETIME_EXP squid-5.9/errors/ro/ERR_LIFETIME_EXP --- squid-5.8/errors/ro/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_LIFETIME_EXP 2023-05-01 10:41:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Durata de viaţă a conexiunii a expirat

          +
          + +

          Squid a terminat conexiunea din cauză că a depăşit durata maximă admisă pentru o conexiune.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_NO_RELAY squid-5.9/errors/ro/ERR_NO_RELAY --- squid-5.8/errors/ro/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_NO_RELAY 2023-05-01 10:41:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Nu există relay Wais

          +
          + +

          Nu este definit niciun relay WAIS pentru acest cache! Strigaţi la administrator.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/ro/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/ro/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:41:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Un document valid nu a fost găsit în cache şi directiva only-if-cached (numai dacă este deja în cache) a fost specificată.

          +
          + +

          Aţi cerut un document cu directiva only-if-cached (numai dacă există deja în cache). Documentul nu a fost găsit în cache, sau a necesitat o revalidare, revalidare interzisă de directiva only-if-cached.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/error-details.txt squid-5.9/errors/ro/error-details.txt --- squid-5.8/errors/ro/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/error-details.txt 2023-05-01 10:41:04.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/ro/ERR_PRECONDITION_FAILED squid-5.9/errors/ro/ERR_PRECONDITION_FAILED --- squid-5.8/errors/ro/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_PRECONDITION_FAILED 2023-05-01 10:41:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          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-5.8/errors/ro/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/ro/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/ro/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:41:02.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_READ_ERROR squid-5.9/errors/ro/ERR_READ_ERROR --- squid-5.8/errors/ro/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_READ_ERROR 2023-05-01 10:41:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Eroare la citire

          +
          + +

          Sistemul de operare a returnat mesajul: %E

          + +

          A survenit o eroare în timp ce se citeau date din reţea. Vă rugăm să încercaţi cererea din nou.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_READ_TIMEOUT squid-5.9/errors/ro/ERR_READ_TIMEOUT --- squid-5.8/errors/ro/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_READ_TIMEOUT 2023-05-01 10:41:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Cererea de citire a expirat

          +
          + +

          Sistemul de operare a returnat mesajul: %E

          + +

          S-a depăşit timpul de aşteptare în tipul citirii datelor de la reţea. Reţeaua sau serverul ar putea fi căzute sau congestionate. Vă rugăm să încercaţi din nou.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/ro/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/ro/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:41:02.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          A eşuat stabilirea unei conexiuni securizate cu %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Acest proxy şi serverul cerut nu au putut negocia o modalitate de securizare mutual acceptabilă pentru a procesa cererea d-voastră. Este posibil ca serverul respectiv să nu suporte conexiuni securizate, sau că proxy-ul nu este satisfăcut de certificările de securitate ale serverului.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_SHUTTING_DOWN squid-5.9/errors/ro/ERR_SHUTTING_DOWN --- squid-5.8/errors/ro/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_SHUTTING_DOWN 2023-05-01 10:41:02.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +

          Acest cache este în curs de închidere şi nu poate procesa cererea în acest moment. Vă rugăm să repetaţi cererea cât mai curând.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_SOCKET_FAILURE squid-5.9/errors/ro/ERR_SOCKET_FAILURE --- squid-5.8/errors/ro/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_SOCKET_FAILURE 2023-05-01 10:41:03.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Eroare de Socket

          +
          + +

          Sistemul de operare a returnat mesajul: %E

          + +

          Squid nu poate crea un socket TCP, probabil din cauza încărcării excesive. Vă rugăm să încercaţi cererea din nou.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_TOO_BIG squid-5.9/errors/ro/ERR_TOO_BIG --- squid-5.8/errors/ro/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_TOO_BIG 2023-05-01 10:41:03.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Cererea sau răspunsul este prea mare.

          +
          + +

          În cazul în care faceţi o cerere POST sau PUT, ceea ce încercaţi să încărcaţi este prea mare.

          +

          În cazul în care faceţi o cerere GET, ceea ce încercaţi să descărcaţi este prea mare.

          +

          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-5.8/errors/ro/ERR_UNSUP_HTTPVERSION squid-5.9/errors/ro/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/ro/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_UNSUP_HTTPVERSION 2023-05-01 10:41:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          Versiune HTTP nesuportată

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Versiune HTTP nesuportată

          +
          + +

          Acest Squid nu acceptă versiunea HTTP pe care încercaţi să o utilizaţi.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_UNSUP_REQ squid-5.9/errors/ro/ERR_UNSUP_REQ --- squid-5.8/errors/ro/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_UNSUP_REQ 2023-05-01 10:41:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Metodă de cerere şi protocol nesuportată

          +
          + +

          Squid nu suportă toate metodele de cerere pentru toate protocoalele de acces. De exemplu, nu puteţi face o cerere de tip POST pentru Gopher.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_URN_RESOLVE squid-5.9/errors/ro/ERR_URN_RESOLVE --- squid-5.8/errors/ro/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_URN_RESOLVE 2023-05-01 10:41:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          EROARE

          +

          Un URL pentru URN-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URN-ului: %U

          + +
          +

          Nu se poate rezolva URN-ul

          +
          + +

          Hei, nu vă aşteptaţi la prea multe de la URN-uri pe %T :)

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_WRITE_ERROR squid-5.9/errors/ro/ERR_WRITE_ERROR --- squid-5.8/errors/ro/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_WRITE_ERROR 2023-05-01 10:41:03.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Eroare la scriere

          +
          + +

          Sistemul de operare a returnat mesajul: %E

          + +

          A survenit o eroare în timp ce se scriau date în reţea. Vă rugăm să încercaţi cererea din nou.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ro/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/ro/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/ro/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ro/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:41:04.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +EROARE: URL-ul cerut nu a putut fi accesat + + +
          +

          EROARE

          +

          URL-ul cerut nu a putut fi accesat

          +
          +
          + +
          +

          S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

          + +
          +

          Răspuns de lungime zero

          +
          + +

          Squid nu a recepţionat nici un fel de date pentru această cerere.

          + +

          Administratorul cache-ului este %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_ACCESS_DENIED squid-5.9/errors/ru/ERR_ACCESS_DENIED --- squid-5.8/errors/ru/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_ACCESS_DENIED 2023-05-01 10:41:04.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Доступ запрещён.

          +
          + +

          Система контроля доступа не позволяет выполнить ваш запрос сейчас. Обратитесь к вашему администратору.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/ru/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/ru/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:41:04.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении 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-5.8/errors/ru/ERR_AGENT_CONFIGURE squid-5.9/errors/ru/ERR_AGENT_CONFIGURE --- squid-5.8/errors/ru/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_AGENT_CONFIGURE 2023-05-01 10:41:04.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Настройки браузера + + +
          +

          ОШИБКА

          +

          Настройки браузера

          +
          +
          + +
          +
          +

          Необходимо произвести настройку вашего браузера для использования этой сети

          +
          + +

          Эти настройки в вашем браузере:

          + +
          +For Firefox browsers go to: +
            +
          • Инструменты -> Опции -> Дополнительно -> Сеть -> Настойки соединения
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Инструменты -> Настройки интернета -> Соединения -> Настройки LAN -> Прокси
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Инструменты -> Настройки -> Дополнительно -> Сеть -> Прокси-серверы
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_AGENT_WPAD squid-5.9/errors/ru/ERR_AGENT_WPAD --- squid-5.8/errors/ru/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_AGENT_WPAD 2023-05-01 10:41:04.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Настройки браузера + + +
          +

          ОШИБКА

          +

          Настройки браузера

          +
          +
          + +
          +
          +

          Необходимо произвести настройку вашего браузера для использования этой сети

          +
          + +

          Эти настройки в вашем браузере:

          + +
          +For Firefox browsers go to: +
            +
          • Инструменты -> Опции -> Дополнительно -> Сеть -> Настойки соединения
          • +
          • Select Auto-detect proxy settings for this network
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Инструменты -> Настройки интернета -> Соединения -> Настройки LAN -> Прокси
          • +
          • Выберите Автоматически определять настройки
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Инструменты -> Настройки -> Дополнительно -> Сеть -> Прокси-серверы
          • +
          • Выберите Использовать Автоматическое определение прокси
          • +
          +
          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/ru/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/ru/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:41:05.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ОШИБКА: Доступ к кэшу запрещён + + +
          +

          ОШИБКА

          +

          Доступ к кэшу запрещён.

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Доступ к кэшу запрещён.

          +
          + +

          Извините, Вы не можете запросить %U из этого кэша до тех пор, пока не пройдёте аутентификацию.

          + +

          Please contact the cache administrator if you have difficulties authenticating yourself.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/ru/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/ru/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:41:05.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ОШИБКА: Доступ к управлению кэшем запрещён. + + +
          +

          ОШИБКА

          +

          Доступ к управлению кэшем запрещён.

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Доступ к управлению кэшем запрещён.

          +
          + +

          Извините, Вы не можете запросить %U из системы управления кэшем до тех пор, пока не пройдете аутентификацию.

          + +

          Если у Вас возникли проблемы с аутентификацией, пожалуйста, свяжитесь с администратором кэша, если же Вы - администратор, прочитайте документацию по интерфейсу управления кэшем и проверьте файл протокола на предмет более детальных сообщений об ошибках.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_CANNOT_FORWARD squid-5.9/errors/ru/ERR_CANNOT_FORWARD --- squid-5.8/errors/ru/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_CANNOT_FORWARD 2023-05-01 10:41:05.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Невозможно переслать этот запрос в данное время.

          +
          + +

          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.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_CONFLICT_HOST squid-5.9/errors/ru/ERR_CONFLICT_HOST --- squid-5.8/errors/ru/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_CONFLICT_HOST 2023-05-01 10:41:05.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении 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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_CONNECT_FAIL squid-5.9/errors/ru/ERR_CONNECT_FAIL --- squid-5.8/errors/ru/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_CONNECT_FAIL 2023-05-01 10:41:05.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Соединение с %I не удалось

          +
          + +

          Система вернула: %E

          + +

          Удаленный узел или сеть недоступен. Повторите запрос позднее

          + +

          Администратор Вашего кэша: %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_DIR_LISTING squid-5.9/errors/ru/ERR_DIR_LISTING --- squid-5.8/errors/ru/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_DIR_LISTING 2023-05-01 10:41:05.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Каталог: %U + + +
          +

          Каталог: %U/

          +
          +
          + +
          +

          Содержимое каталога:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Родительская директория (Корневая директория)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_DNS_FAIL squid-5.9/errors/ru/ERR_DNS_FAIL --- squid-5.8/errors/ru/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_DNS_FAIL 2023-05-01 10:41:06.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Невозможно определить IP-адрес по имени узла %H

          +
          + +

          Сервер DNS ответил:

          +
          +
          %z
          +
          + +

          Это означает, что кэш не смог распознать имя узла в URL. Проверьте адрес на корректность.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_ESI squid-5.9/errors/ru/ERR_ESI --- squid-5.8/errors/ru/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_ESI 2023-05-01 10:41:06.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Обработка ESI не удалась.

          +
          + +

          Обработчик ESI ответил:

          +
          +
          %Z
          +
          + +

          Это означает, что заместитель не сумел обработать ESI-шаблон. Пожалуйста, сообщите об этой ошибке веб-мастеру.

          + +

          Ваш вебмастер: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_FORWARDING_DENIED squid-5.9/errors/ru/ERR_FORWARDING_DENIED --- squid-5.8/errors/ru/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_FORWARDING_DENIED 2023-05-01 10:41:06.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Пересылка запрещена.

          +
          + +

          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.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_FTP_DISABLED squid-5.9/errors/ru/ERR_FTP_DISABLED --- squid-5.8/errors/ru/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_FTP_DISABLED 2023-05-01 10:41:06.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Протокол FTP отключён

          +
          + +

          Этот кэш не поддерживает протокол FTP.

          + +

          Администратор Вашего кэша: %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_FTP_FAILURE squid-5.9/errors/ru/ERR_FTP_FAILURE --- squid-5.8/errors/ru/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_FTP_FAILURE 2023-05-01 10:41:06.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          Произошла ошибка протокола FTP при попытке получить URL: %U

          + +

          Squid послал следующую команду FTP:

          +
          +
          %f
          +
          + +

          Сервер ответил:

          +
          +
          %F
          +
          %g
          +
          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_FTP_FORBIDDEN squid-5.9/errors/ru/ERR_FTP_FORBIDDEN --- squid-5.8/errors/ru/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_FTP_FORBIDDEN 2023-05-01 10:41:07.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          Произошла ошибка аутентификации FTP при попытке получить URL: %U

          + +

          Squid послал следующую команду FTP:

          +
          +
          %f
          +
          + +

          Сервер ответил:

          +
          +
          %F
          +
          %g
          +
          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_FTP_NOT_FOUND squid-5.9/errors/ru/ERR_FTP_NOT_FOUND --- squid-5.8/errors/ru/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_FTP_NOT_FOUND 2023-05-01 10:41:07.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          Следующий URL не может быть получен: %U

          + +

          Squid послал следующую команду FTP:

          +
          +
          %f
          +
          + +

          Сервер ответил:

          +
          +
          %F
          +
          %g
          +
          + +

          Это могло произойти из-за абсолютной ссылки на FTP (которая не соответствует RFC 1738). В этом случае файл может быть получен по адресу %B.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_FTP_PUT_CREATED squid-5.9/errors/ru/ERR_FTP_PUT_CREATED --- squid-5.8/errors/ru/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_FTP_PUT_CREATED 2023-05-01 10:41:07.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +Копирование локального файла на FTP-сервер методом PUT завершено. + + +
          +

          Операция завершилась успешно

          +

          Файл создан

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_FTP_PUT_ERROR squid-5.9/errors/ru/ERR_FTP_PUT_ERROR --- squid-5.8/errors/ru/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_FTP_PUT_ERROR 2023-05-01 10:41:07.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ОШИБКА: Отправка по FTP не удалась + + +
          +

          ОШИБКА

          +

          Произошла ошибка во время копирования локального файла на FTP-сервер методом PUT.

          +
          +
          + +
          +

          Произошла ошибка протокола FTP при попытке получить URL: %U

          + +

          Squid послал следующую команду FTP:

          +
          +
          %f
          +
          + +

          Сервер ответил:

          +
          +
          %F
          +
          + +

          Это означает, что сервер FTP может не иметь прав или свободного места для хранения файла. Проверьте путь, права, свободное место и попробуйте снова.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_FTP_PUT_MODIFIED squid-5.9/errors/ru/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/ru/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_FTP_PUT_MODIFIED 2023-05-01 10:41:07.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +Копирование локального файла на FTP-сервер методом PUT завершено. + + +
          +

          Операция завершилась успешно

          +

          Файл обновлён

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_FTP_UNAVAILABLE squid-5.9/errors/ru/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/ru/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_FTP_UNAVAILABLE 2023-05-01 10:41:07.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          Сервер FTP слишком нагружен, чтобы получить URL: %U

          + +

          Squid послал следующую команду FTP:

          + +
          +
          %f
          +
          + +

          Сервер ответил:

          +
          +
          %F
          +
          %g
          +
          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_GATEWAY_FAILURE squid-5.9/errors/ru/ERR_GATEWAY_FAILURE --- squid-5.8/errors/ru/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_GATEWAY_FAILURE 2023-05-01 10:41:08.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении 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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_ICAP_FAILURE squid-5.9/errors/ru/ERR_ICAP_FAILURE --- squid-5.8/errors/ru/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_ICAP_FAILURE 2023-05-01 10:41:08.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Ошибка протокола ICAP.

          +
          + +

          Система вернула: %E

          + +

          Это означает, что какой-то этап связи по протоколу ICAP не удался.

          + +

          Возможные проблемы:

          +
            +
          • Сервер ICAP недоступен

          • +
          • Получен недопустимый ответ от сервера ICAP.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_INVALID_REQ squid-5.9/errors/ru/ERR_INVALID_REQ --- squid-5.8/errors/ru/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_INVALID_REQ 2023-05-01 10:41:08.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          Обнаружен недопустимый запрос:

          + +
          +
          %R
          +
          + +

          Возможные проблемы:

          +
            +
          • Отсутствует или неизвестен метод запроса.

          • +
          • Отсутствует URL.

          • +
          • Отсутствует идентификатор HTTP (HTTP/1.0).

          • +
          • Запрос слишком велик.

          • +
          • В запросе 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-5.8/errors/ru/ERR_INVALID_RESP squid-5.9/errors/ru/ERR_INVALID_RESP --- squid-5.8/errors/ru/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_INVALID_RESP 2023-05-01 10:41:08.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          Получен недопустимый ответ при попытке обработки запроса:

          + +
          +
          %R
          +
          + +

          Ответ HTTP, полученный от сервера, не может быть распознан, или он был неверно сформирован. Пожалуйста, свяжитесь с оператором сайта.

          + +

          Администратор Вашего кэша при необходимости может предоставить Вам более подробную информацию о действительных причинах проблемы.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_INVALID_URL squid-5.9/errors/ru/ERR_INVALID_URL --- squid-5.8/errors/ru/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_INVALID_URL 2023-05-01 10:41:08.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Недопустимый URL

          +
          + +

          Какая-то часть запрашиваемого URL некорректна

          + +

          Возможные проблемы:

          +
            +
          • Отсутствет или неверено указан протокол (должно быть http:// или похоже)

          • +
          • Отсутствует имя узла (hostname)

          • +
          • Недопустимое двойное экранирование в пути URL (URL-Path)

          • +
          • Недопустимый символ в имени узла (hostname), подчёркивания запрещены.

          • +
          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_LIFETIME_EXP squid-5.9/errors/ru/ERR_LIFETIME_EXP --- squid-5.8/errors/ru/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_LIFETIME_EXP 2023-05-01 10:41:09.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Время жизни соединения истекло

          +
          + +

          Squid прервал запрос из-за превышения максимального времени соединения.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_NO_RELAY squid-5.9/errors/ru/ERR_NO_RELAY --- squid-5.8/errors/ru/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_NO_RELAY 2023-05-01 10:41:09.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Wais Relay не определен

          +
          + +

          There is no WAIS Relay host defined for this Cache! Yell at the administrator.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/ru/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/ru/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:41:09.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Действительный документ не найден в кэше и указана деректива only-if-cached.

          +
          + +

          Вы сделали запрос с директивой управления кэшем only-if-cached. Документ не был найден в кэше или он требует проверки достоверности, запрещённой директивой only-if-cached.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/error-details.txt squid-5.9/errors/ru/error-details.txt --- squid-5.8/errors/ru/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/error-details.txt 2023-05-01 10:41:11.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/ru/ERR_PRECONDITION_FAILED squid-5.9/errors/ru/ERR_PRECONDITION_FAILED --- squid-5.8/errors/ru/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_PRECONDITION_FAILED 2023-05-01 10:41:09.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении 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-5.8/errors/ru/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/ru/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/ru/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:41:09.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_READ_ERROR squid-5.9/errors/ru/ERR_READ_ERROR --- squid-5.8/errors/ru/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_READ_ERROR 2023-05-01 10:41:09.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Ошибка чтения

          +
          + +

          Система вернула: %E

          + +

          Ошибка при получении данных их сети. Повторите запрос.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_READ_TIMEOUT squid-5.9/errors/ru/ERR_READ_TIMEOUT --- squid-5.8/errors/ru/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_READ_TIMEOUT 2023-05-01 10:41:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Время ожидания при чтении истекло

          +
          + +

          Система вернула: %E

          + +

          Превышен интервал времени ожидания при получении данных из сети. Сеть или сервер могут быть недоступны или перегружены. Повторите попытку позже.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/ru/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/ru/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:41:10.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Не удалось установить безопасное соединение с %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Для выполнения Вашего запроса этот кэш и удаленный узел не смогли согласовать взаимоприемлемые параметры безопасности. Возможно, удаленный узел не поддерживает безопасные соединения или кэш не удовлетворён удостоверением безопасности узла.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_SHUTTING_DOWN squid-5.9/errors/ru/ERR_SHUTTING_DOWN --- squid-5.8/errors/ru/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_SHUTTING_DOWN 2023-05-01 10:41:10.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +

          Сервер в данный момент выключается и не может выполнить ваш запрос. Повторите попытку позже.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_SOCKET_FAILURE squid-5.9/errors/ru/ERR_SOCKET_FAILURE --- squid-5.8/errors/ru/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_SOCKET_FAILURE 2023-05-01 10:41:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Ошибка сокета

          +
          + +

          Система вернула: %E

          + +

          Squid не может создать сокет TCP, предположительно из-за большой нагрузки. Пожалуйста, повторите запрос.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_TOO_BIG squid-5.9/errors/ru/ERR_TOO_BIG --- squid-5.8/errors/ru/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_TOO_BIG 2023-05-01 10:41:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Запрос или ответ слишком велик.

          +
          + +

          Если Вы выполняете запрос POST или PUT, то отправляемый объект слишком велик.

          +

          Если Вы выполняете запрос GET, то загружаемый объект слишком велик.

          +

          Эти ограничения были установлены администратором. Свяжитесь с ним для получения информации.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_UNSUP_HTTPVERSION squid-5.9/errors/ru/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/ru/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_UNSUP_HTTPVERSION 2023-05-01 10:41:10.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Неподдерживаемая версия HTTP

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Неподдерживаемая версия HTTP

          +
          + +

          Данный Squid не принимает версию HTTP, которую вы пытаетесь использовать.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_UNSUP_REQ squid-5.9/errors/ru/ERR_UNSUP_REQ --- squid-5.8/errors/ru/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_UNSUP_REQ 2023-05-01 10:41:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Неподдерживаемый метод запроса или протокол

          +
          + +

          Squid не поддерживает все методы запросов для всех протоколов. К примеру, для протокола Gopher Вы не можете выполнить запрос POST.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_URN_RESOLVE squid-5.9/errors/ru/ERR_URN_RESOLVE --- squid-5.8/errors/ru/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_URN_RESOLVE 2023-05-01 10:41:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: Запрошеный URN не может быть получен + + +
          +

          ОШИБКА

          +

          URL для запрошенного URN не может быть получен

          +
          +
          + +
          +

          При получении URN %U произошла следующая ошибка

          + +
          +

          Невозможно определить URN

          +
          + +

          Не стоит ожидать чудес от URN-ов на %T :)

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_WRITE_ERROR squid-5.9/errors/ru/ERR_WRITE_ERROR --- squid-5.8/errors/ru/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_WRITE_ERROR 2023-05-01 10:41:11.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Ошибка записи

          +
          + +

          Система вернула: %E

          + +

          Ошибка отправки данных. Повторите запрос

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/ru/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/ru/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/ru/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/ru/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:41:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ОШИБКА: Запрошенный URL не может быть получен + + +
          +

          ОШИБКА

          +

          Запрошенный URL не может быть получен

          +
          +
          + +
          +

          При получении URL %U произошла следующая ошибка

          + +
          +

          Пустой ответ (нулевой длины)

          +
          + +

          Squid не получил никаких данных в ответ на этот запрос.

          + +

          Администратор Вашего кэша: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_ACCESS_DENIED squid-5.9/errors/sk/ERR_ACCESS_DENIED --- squid-5.8/errors/sk/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_ACCESS_DENIED 2023-05-01 10:41:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Prístup zamietnutý.

          +
          + +

          Vašu požiadavku v tomto čase nebolo možné splniť kvôli konfigurácii riadenia prístupu. Ak si myslíte, že je to chyba, prosím, kontaktujte správcu daného systému.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/sk/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/sk/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:41:12.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          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-5.8/errors/sk/ERR_AGENT_CONFIGURE squid-5.9/errors/sk/ERR_AGENT_CONFIGURE --- squid-5.8/errors/sk/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_AGENT_CONFIGURE 2023-05-01 10:41:12.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Konfigurácia webového prehliadača + + +
          +

          CHYBA

          +

          Konfigurácia webového prehliadača

          +
          +
          + +
          +
          +

          Aby ste mohli používať túto sieť, musíte upraviť konfiguráciu vášho webového prehliadača.

          +
          + +

          Ako nájsť tieto nastavenia vo vašom prehliadači:

          + +
          +For Firefox browsers go to: +
            +
          • Nástroje -> Možnosti -> Rozšírené -> Sieť -> Nastavenie pripojenia
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Nástroje -> Možnosti internetu -> Pripojenie -> Nastavenia LAN -> Proxy
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Nástroje -> Nastavenia -> Rozšírené -> Sieť -> Proxy servery
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_AGENT_WPAD squid-5.9/errors/sk/ERR_AGENT_WPAD --- squid-5.8/errors/sk/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_AGENT_WPAD 2023-05-01 10:41:12.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Konfigurácia webového prehliadača + + +
          +

          CHYBA

          +

          Konfigurácia webového prehliadača

          +
          +
          + +
          +
          +

          Aby ste mohli používať túto sieť, musíte upraviť konfiguráciu vášho webového prehliadača.

          +
          + +

          Ako nájsť tieto nastavenia vo vašom prehliadači:

          + +
          +For Firefox browsers go to: +
            +
          • Nástroje -> Možnosti -> Rozšírené -> Sieť -> Nastavenie pripojenia
          • +
          • Select Auto-detect proxy settings for this network
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Nástroje -> Možnosti internetu -> Pripojenie -> Nastavenia LAN -> Proxy
          • +
          • Vyberte Automaticky zistiť nastavenia
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Nástroje -> Nastavenia -> Rozšírené -> Sieť -> Proxy servery
          • +
          • Vyberte Automatická konfigurácia proxy
          • +
          +
          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/sk/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/sk/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:41:12.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +CHYBA: Prístup ku cache zamietnutý + + +
          +

          CHYBA

          +

          Prístup ku cache zamietnutý.

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Prístup ku cache zamietnutý.

          +
          + +

          Ľutujeme, prístup k dokumentu %U z cache vám bude povolený až po tom ako sa autentifikujete.

          + +

          Please contact the cache administrator if you have difficulties authenticating yourself.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/sk/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/sk/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:41:12.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +CHYBA: Prístup ku správcovi cache zamietnutý + + +
          +

          CHYBA

          +

          Prístup k sprívcovi cache zamietnutý.

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Prístup k sprívcovi cache zamietnutý.

          +
          + +

          Ľutujeme, prístup k dokumentu %U zo správcu cache vám bude povolený až po tom ako sa autentifikujete.

          + +

          Ak máte problém pri autentifikácii, kontaktujte prosím správcu cache. Ak vy sám ste správca, prečítajte si prosím dokumentáciu k rozhraniu správcu cache a prezrite si podrobnejšie chybové hlásenie v protokole cache.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_CANNOT_FORWARD squid-5.9/errors/sk/ERR_CANNOT_FORWARD --- squid-5.8/errors/sk/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_CANNOT_FORWARD 2023-05-01 10:41:12.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Vaším správcom cache je %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_CONFLICT_HOST squid-5.9/errors/sk/ERR_CONFLICT_HOST --- squid-5.8/errors/sk/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_CONFLICT_HOST 2023-05-01 10:41:13.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_CONNECT_FAIL squid-5.9/errors/sk/ERR_CONNECT_FAIL --- squid-5.8/errors/sk/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_CONNECT_FAIL 2023-05-01 10:41:13.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Spojenie k %I zlyhalo.

          +
          + +

          Systém odpovedal: %E

          + +

          Vzdialený server alebo sieť môžu byť nedostupné. Prosím, opakujte svoju požiadavku.

          + +

          Vaším správcom cache je %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_DIR_LISTING squid-5.9/errors/sk/ERR_DIR_LISTING --- squid-5.8/errors/sk/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_DIR_LISTING 2023-05-01 10:41:13.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Adresár: %U + + +
          +

          Adresár: %U/

          +
          +
          + +
          +

          Obsah adresára:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Rodičovský adresár (Koreňový adresár)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_DNS_FAIL squid-5.9/errors/sk/ERR_DNS_FAIL --- squid-5.8/errors/sk/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_DNS_FAIL 2023-05-01 10:41:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Nie je možné previesť názov počítača na IP adresu %H

          +
          + +

          DNS server odpovedal:

          +
          +
          %z
          +
          + +

          To znamená, že cache server nebol schopný získať adresu uvedenú v URL. Prosím, skontrolujte správnosť adresy.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_ESI squid-5.9/errors/sk/ERR_ESI --- squid-5.8/errors/sk/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_ESI 2023-05-01 10:41:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Spracovanie ESI zlyhalo.

          +
          + +

          ESI procesor vrátil:

          +
          +
          %Z
          +
          + +

          To znamená, že zástupca nedokázal spracovať šablónu ESI. Prosím, ohláste túto chybu webmasterovi.

          + +

          Váš webmaster je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_FORWARDING_DENIED squid-5.9/errors/sk/ERR_FORWARDING_DENIED --- squid-5.8/errors/sk/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_FORWARDING_DENIED 2023-05-01 10:41:14.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Preposielanie zamietnuté.

          +
          + +

          Tento server nepresmeruje vašu požiadavku, pretože sa pokúša o vynútenie vzťahu súrodenec. Možno je klient na %i cache server, ktorý bol zle nakonfigurovaný.

          + +

          Vaším správcom cache je %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_FTP_DISABLED squid-5.9/errors/sk/ERR_FTP_DISABLED --- squid-5.8/errors/sk/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_FTP_DISABLED 2023-05-01 10:41:14.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          FTP je vypnuté

          +
          + +

          Tento cache server nepodporuje protokol FTP.

          + +

          Vaším správcom cache je %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_FTP_FAILURE squid-5.9/errors/sk/ERR_FTP_FAILURE --- squid-5.8/errors/sk/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_FTP_FAILURE 2023-05-01 10:41:14.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Vyskytla sa chyba protokolu FTP pri pokuse o prístup k URL: %U

          + +

          Squid odoslal nasledujúci FTP príkaz:

          +
          +
          %f
          +
          + +

          Server odpovedal:

          +
          +
          %F
          +
          %g
          +
          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_FTP_FORBIDDEN squid-5.9/errors/sk/ERR_FTP_FORBIDDEN --- squid-5.8/errors/sk/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_FTP_FORBIDDEN 2023-05-01 10:41:14.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse získať URL sa vyskytla chyba autentifikácie FTP: %U

          + +

          Squid odoslal nasledujúci FTP príkaz:

          +
          +
          %f
          +
          + +

          Server odpovedal:

          +
          +
          %F
          +
          %g
          +
          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_FTP_NOT_FOUND squid-5.9/errors/sk/ERR_FTP_NOT_FOUND --- squid-5.8/errors/sk/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_FTP_NOT_FOUND 2023-05-01 10:41:14.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Nasledovný URL je nedostupný: %U

          + +

          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.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_FTP_PUT_CREATED squid-5.9/errors/sk/ERR_FTP_PUT_CREATED --- squid-5.8/errors/sk/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_FTP_PUT_CREATED 2023-05-01 10:41:14.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operácia úspešná

          +

          Súbor vytvorený

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_FTP_PUT_ERROR squid-5.9/errors/sk/ERR_FTP_PUT_ERROR --- squid-5.8/errors/sk/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_FTP_PUT_ERROR 2023-05-01 10:41:15.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +CHYBA: Nahrávanie prostredníctvom FTP zlyhalo + + +
          +

          CHYBA

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          Vyskytla sa chyba protokolu FTP pri pokuse o prístup k URL: %U

          + +

          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.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_FTP_PUT_MODIFIED squid-5.9/errors/sk/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/sk/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_FTP_PUT_MODIFIED 2023-05-01 10:41:15.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operácia úspešná

          +

          Súbor aktualizovaný

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_FTP_UNAVAILABLE squid-5.9/errors/sk/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/sk/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_FTP_UNAVAILABLE 2023-05-01 10:41:15.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          FTP server bol príliš zaneprázdnený pri pokuse získať nasledovný URL: %U

          + +

          Squid odoslal nasledujúci FTP príkaz:

          + +
          +
          %f
          +
          + +

          Server odpovedal:

          +
          +
          %F
          +
          %g
          +
          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_GATEWAY_FAILURE squid-5.9/errors/sk/ERR_GATEWAY_FAILURE --- squid-5.8/errors/sk/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_GATEWAY_FAILURE 2023-05-01 10:41:15.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          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.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_ICAP_FAILURE squid-5.9/errors/sk/ERR_ICAP_FAILURE --- squid-5.8/errors/sk/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_ICAP_FAILURE 2023-05-01 10:41:15.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Chyba protokoly ICAP.

          +
          + +

          Systém odpovedal: %E

          + +

          To znamená, že niektorá časť komunikácie ICAP zlyhala.

          + +

          Niektoré možné problémy:

          +
            +
          • ICAP server nie je dostupný.

          • +
          • Od ICAP servera bola prijatá neplatná odpoveď.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_INVALID_REQ squid-5.9/errors/sk/ERR_INVALID_REQ --- squid-5.8/errors/sk/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_INVALID_REQ 2023-05-01 10:41:15.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Vyskytla sa chyba Neplatná požiadavka pri pokuse o spracovanie požiadavky:

          + +
          +
          %R
          +
          + +

          Niektoré možné problémy:

          +
            +
          • Chýbajúca alebo neznáma metóda požiadavky.

          • +
          • Chýbajúci URL.

          • +
          • Chýbajúci identifikátor HTTP (HTTP/1.0).

          • +
          • Požiadavka je príliš dlhá.

          • +
          • Chýbajúca položka Content-Length pre požiadavky POST alebo PUT.

          • +
          • Chybný znak v názve serveru; podčiarovník nie je povolený.

          • +
          • Vlastnosť Expect: verzie HTTP/1.1 sa požaduje od softvéru verzie HTTP/1.0.

          • +
          + +

          Vaším správcom cache je %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_INVALID_RESP squid-5.9/errors/sk/ERR_INVALID_RESP --- squid-5.8/errors/sk/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_INVALID_RESP 2023-05-01 10:41:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          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.

          + +

          V prípade potreby vám váš správca cache môže poskytnúť podrobnosti o presnej povahe problému.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_INVALID_URL squid-5.9/errors/sk/ERR_INVALID_URL --- squid-5.8/errors/sk/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_INVALID_URL 2023-05-01 10:41:16.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Neplatný URL

          +
          + +

          Niektorá časť vami požadovaného URL je chybná.

          + +

          Niektoré možné problémy:

          +
            +
          • Chybný alebo chýbajúci protokol (mal by byť http:// alebo niečo podobné)

          • +
          • Chýbajúci názov servera

          • +
          • Chybná dvojitá úniková klauzula v URL-Path

          • +
          • Chybný znak v názve serveru; podčiarovník nie je povolený.

          • +
          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_LIFETIME_EXP squid-5.9/errors/sk/ERR_LIFETIME_EXP --- squid-5.8/errors/sk/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_LIFETIME_EXP 2023-05-01 10:41:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Životnosť pojenia vypršala

          +
          + +

          Squid prerušil požiadavku, pretože bola prekročená maximálna dĺžka trvania spojenia.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_NO_RELAY squid-5.9/errors/sk/ERR_NO_RELAY --- squid-5.8/errors/sk/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_NO_RELAY 2023-05-01 10:41:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Žiadne relé WAIS

          +
          + +

          Tento cache server nemá nastavený žiadny WAIS Relay server! Kričte na svojho správcu.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/sk/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/sk/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:41:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Vami požadovaný dokument sa nenachádza v cache, a bola uvedená direktíva only-if-cached.

          +
          + +

          Vyslali ste požiadavku s direktívou only-if-cached na riadenie činnosti cache. Požadovaný dokument nebol nájdený v cache alebo tento dokument vyžaduje aktualizáciu pričom toto je direktívou only-if-cached obmedzené.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/error-details.txt squid-5.9/errors/sk/error-details.txt --- squid-5.8/errors/sk/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/error-details.txt 2023-05-01 10:41:19.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/sk/ERR_PRECONDITION_FAILED squid-5.9/errors/sk/ERR_PRECONDITION_FAILED --- squid-5.8/errors/sk/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_PRECONDITION_FAILED 2023-05-01 10:41:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          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-5.8/errors/sk/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/sk/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/sk/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:41:17.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_READ_ERROR squid-5.9/errors/sk/ERR_READ_ERROR --- squid-5.8/errors/sk/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_READ_ERROR 2023-05-01 10:41:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Chyba pri čítaní

          +
          + +

          Systém odpovedal: %E

          + +

          Vyskytla sa chyba pri načítavaní údajov cez sieť. Prosím, opakujte svoju požiadavku.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_READ_TIMEOUT squid-5.9/errors/sk/ERR_READ_TIMEOUT --- squid-5.8/errors/sk/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_READ_TIMEOUT 2023-05-01 10:41:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Čas vypršal pri čítaní

          +
          + +

          Systém odpovedal: %E

          + +

          Vyhradený čas vypršal počas čakania na načítanie dát zo siete. Sieť alebo server môžu byť mimo prevádzky alebo preťažené. Prosím, zopakujte svoju požiadavku.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/sk/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/sk/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:41:17.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Nepodarilo sa nadviazať zabezpečené spojenie s %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Táto proxy a vzdialený server sa nedokázali dohodnúť na vzájomne prijateľných bezpečnostných nastaveniach na spracovanie vašej požiadavky. Je možné, že vzdialený server nepodporuje zabezpečené pripojenia alebo že proxy server nie je spokojný s prihlasovacími údajmi hostiteľa.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_SHUTTING_DOWN squid-5.9/errors/sk/ERR_SHUTTING_DOWN --- squid-5.8/errors/sk/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_SHUTTING_DOWN 2023-05-01 10:41:17.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +

          Táto cache sa práve vypína a nemôže spracovať vašu požiadavku. Prosím, zopakujte svoju požiadavku o chvíľu.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_SOCKET_FAILURE squid-5.9/errors/sk/ERR_SOCKET_FAILURE --- squid-5.8/errors/sk/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_SOCKET_FAILURE 2023-05-01 10:41:18.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Chyba socketu

          +
          + +

          Systém odpovedal: %E

          + +

          Squid nie je schopný vytvoriť TCP socket pravdepodobne v dôsledku preťaženia. Prosím, opakujte svoju požiadavku.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_TOO_BIG squid-5.9/errors/sk/ERR_TOO_BIG --- squid-5.8/errors/sk/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_TOO_BIG 2023-05-01 10:41:18.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Požiadavka alebo odpoveď je príliš veľká.

          +
          + +

          Ak vykonávate požiadavku POST alebo PUT, položka, ktorú sa snažíte nahrať je príliš veľká.

          +

          Ak vykonávate požiadavku GET, položka, ktorú sa snažíte stiahnuť je príliš veľká.

          +

          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-5.8/errors/sk/ERR_UNSUP_HTTPVERSION squid-5.9/errors/sk/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/sk/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_UNSUP_HTTPVERSION 2023-05-01 10:41:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Nepodporovaná verzia HTTP

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Nepodporovaná verzia HTTP

          +
          + +

          Tento Squid neprijíma HTTP verziu, ktorú sa pokúšate použiť.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_UNSUP_REQ squid-5.9/errors/sk/ERR_UNSUP_REQ --- squid-5.8/errors/sk/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_UNSUP_REQ 2023-05-01 10:41:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Nepodporovaná metóda a protokol požiadavky

          +
          + +

          Squid nepodporuje všetky typy metód pri všetkých protokoloch. Napríklad: nie je možné použiť metódu POST pri službe Gopher.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_URN_RESOLVE squid-5.9/errors/sk/ERR_URN_RESOLVE --- squid-5.8/errors/sk/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_URN_RESOLVE 2023-05-01 10:41:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          CHYBA

          +

          URL pre požadované URN je nedostupné

          +
          +
          + +
          +

          Pri pokuse o získanie URN sa vyskytla nasledovná chyba: %U

          + +
          +

          Nemožno preložiť URN

          +
          + +

          Hej, neočakávaj priveľa od URN na %T :)

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_WRITE_ERROR squid-5.9/errors/sk/ERR_WRITE_ERROR --- squid-5.8/errors/sk/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_WRITE_ERROR 2023-05-01 10:41:19.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Chyba pri zápise

          +
          + +

          Systém odpovedal: %E

          + +

          Vyskytla sa chyba pri zápise do siete. Prosím, opakujte svoju požiadavku.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sk/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/sk/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/sk/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sk/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:41:19.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +CHYBA: Požadovaný URL nebolo možné získať + + +
          +

          CHYBA

          +

          Požadovaný URL nebolo možné získať

          +
          +
          + +
          +

          Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

          + +
          +

          Odpoveď s nulovou veľkosťou

          +
          + +

          Squid nedostal v odpovedi na túto požiadavku žiadne údaje.

          + +

          Vaším správcom cache je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_ACCESS_DENIED squid-5.9/errors/sl/ERR_ACCESS_DENIED --- squid-5.8/errors/sl/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_ACCESS_DENIED 2023-05-01 10:41:19.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Dostop zavrnjen.

          +
          + +

          Vaša zahteva trenutno ni odobrena, ker to preprečujejo nastavitve nadzora dostopa. Obrnite se na svojega ponudnika storitev, če se vam zdi, da je to neutemeljeno.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/sl/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/sl/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:41:19.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          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-5.8/errors/sl/ERR_AGENT_CONFIGURE squid-5.9/errors/sl/ERR_AGENT_CONFIGURE --- squid-5.8/errors/sl/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_AGENT_CONFIGURE 2023-05-01 10:41:19.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Nastavitev spletnega brskalnika + + +
          +

          NAPAKA

          +

          Nastavitev spletnega brskalnika

          +
          +
          + +
          +
          +

          Nastavitve vašega spletnega brskalnika je treba spremeniti, če naj uporablja to omrežje.

          +
          + +

          Kako najdete te nastavitve v svojem brskalniku:

          + +
          +For Firefox browsers go to: +
            +
          • Orodja -> Možnosti -> Napredno -> Omrežje -> Nastavitve povezave
          • +
          • V polje za posredniški strežnik HTTP vnesite ime posredniškega strežnika %h in vrata %b.
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Orodja -> Internetne možnosti -> Povezava -> Nastavitve LAN ->Proxy
          • +
          • V polje za posredniški strežnik HTTP vnesite ime posredniškega strežnika %h in vrata %b.
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Orodja -> Nastavitve -> Napredno -> Omrežje -> Posredovalni strežniki
          • +
          • V polje za posredniški strežnik HTTP vnesite ime posredniškega strežnika %h in vrata %b.
          • +
          +
          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_AGENT_WPAD squid-5.9/errors/sl/ERR_AGENT_WPAD --- squid-5.8/errors/sl/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_AGENT_WPAD 2023-05-01 10:41:19.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Nastavitev spletnega brskalnika + + +
          +

          NAPAKA

          +

          Nastavitev spletnega brskalnika

          +
          +
          + +
          +
          +

          Nastavitve vašega spletnega brskalnika je treba spremeniti, če naj uporablja to omrežje.

          +
          + +

          Kako najdete te nastavitve v svojem brskalniku:

          + +
          +For Firefox browsers go to: +
            +
          • Orodja -> Možnosti -> Napredno -> Omrežje -> Nastavitve povezave
          • +
          • Za to omrežje izberite samozaznavo nastavitev posredniškega strežnika
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Orodja -> Internetne možnosti -> Povezava -> Nastavitve LAN ->Proxy
          • +
          • Izberite samodejno zaznavo nastavitev
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Orodja -> Nastavitve -> Napredno -> Omrežje -> Posredovalni strežniki
          • +
          • Izberite uporabo samodejne konfiguracije posredniškega strežnika
          • +
          +
          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/sl/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/sl/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:41:20.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +NAPAKA: Dostop do predpomnilnika zavrnjen + + +
          +

          NAPAKA

          +

          Dostop do predpomnilnika zavrnjen.

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Dostop do predpomnilnika zavrnjen.

          +
          + +

          Žal trenutno ne morete zahtevati %U od tega predpomnilnika, dokler ne potrdite svoje istovetnosti.

          + +

          Please contact the cache administrator if you have difficulties authenticating yourself.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/sl/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/sl/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:41:20.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +NAPAKA: Dostop do upravitelja predpomnilnika zavrnjen + + +
          +

          NAPAKA

          +

          Dostop do upravitelja predpomnilnika zavrnjen.

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Dostop do upravitelja predpomnilnika zavrnjen.

          +
          + +

          Žal trenutno ne morete zahtevati %U od tega upravitelja predpomnilnika, dokler ne potrdite svoje istovetnosti.

          + +

          Obrnite se na skrbnika predpomnilnika, če imate težave pri avtentikaciji; če pa ste skrbnik vi, se iz dokumentacije programa Squid poučite o vmesniku upravitelja predpomnilnika in v dnevniku predpomnilnika poiščite podrobnejša sporočila o napakah.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_CANNOT_FORWARD squid-5.9/errors/sl/ERR_CANNOT_FORWARD --- squid-5.8/errors/sl/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_CANNOT_FORWARD 2023-05-01 10:41:20.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Skrbnik vašega predpomnilnika je %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_CONFLICT_HOST squid-5.9/errors/sl/ERR_CONFLICT_HOST --- squid-5.8/errors/sl/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_CONFLICT_HOST 2023-05-01 10:41:20.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_CONNECT_FAIL squid-5.9/errors/sl/ERR_CONNECT_FAIL --- squid-5.8/errors/sl/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_CONNECT_FAIL 2023-05-01 10:41:20.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Povezava z %I ni uspela.

          +
          + +

          Sistem je odvrnil: %E

          + +

          Oddaljeni gostitelj ali omrežje morda ne delujeta. Poskusite ponoviti zahtevo!

          + +

          Skrbnik vašega predpomnilnika je %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_DIR_LISTING squid-5.9/errors/sl/ERR_DIR_LISTING --- squid-5.8/errors/sl/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_DIR_LISTING 2023-05-01 10:41:21.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Mapa: %U + + +
          +

          Mapa: %U/

          +
          +
          + +
          +

          Vsebina mape:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Nadrejeni imenik (Korenski imenik)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_DNS_FAIL squid-5.9/errors/sl/ERR_DNS_FAIL --- squid-5.8/errors/sl/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_DNS_FAIL 2023-05-01 10:41:21.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Ni možno določiti naslova IP iz imena gostitelja %H

          +
          + +

          Strežnik DNS je odgovoril:

          +
          +
          %z
          +
          + +

          To pomeni, da predpomnilnik ni mogel razrešiti imena gostitelja, navedenega v naslovu URL. Preverite, ali je naslov pravilen!

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_ESI squid-5.9/errors/sl/ERR_ESI --- squid-5.8/errors/sl/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_ESI 2023-05-01 10:41:21.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Obdelava ESI ni uspela.

          +
          + +

          Opravilnik ESI je odgovoril:

          +
          +
          %Z
          +
          + +

          To pomeni, da namestnik ni mogel obdelati predloge ESI. Obvestite spletarja o tej napaki!

          + +

          Vaš spletar je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_FORWARDING_DENIED squid-5.9/errors/sl/ERR_FORWARDING_DENIED --- squid-5.8/errors/sl/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_FORWARDING_DENIED 2023-05-01 10:41:21.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Posredovanje zavrnjeno.

          +
          + +

          Ta predpomnilnik ne bo posredoval vaše zahteve, ker skuša uveljaviti vrstniško povezavo. Odjemalec na naslovu %i je morda predpomnilnik, ki ni pravilno nastavljen.

          + +

          Skrbnik vašega predpomnilnika je %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_FTP_DISABLED squid-5.9/errors/sl/ERR_FTP_DISABLED --- squid-5.8/errors/sl/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_FTP_DISABLED 2023-05-01 10:41:21.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          FTP je onemogočen

          +
          + +

          Ta predpomnilnik ne podpira FTP.

          + +

          Skrbnik vašega predpomnilnika je %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_FTP_FAILURE squid-5.9/errors/sl/ERR_FTP_FAILURE --- squid-5.8/errors/sl/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_FTP_FAILURE 2023-05-01 10:41:21.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake protokola FTP med poskusom nalaganja naslova URL: %U

          + +

          Squid je poslal naslednji ukaz FTP:

          +
          +
          %f
          +
          + +

          Strežnik je odgovoril:

          +
          +
          %F
          +
          %g
          +
          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_FTP_FORBIDDEN squid-5.9/errors/sl/ERR_FTP_FORBIDDEN --- squid-5.8/errors/sl/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_FTP_FORBIDDEN 2023-05-01 10:41:22.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Spodletela je avtentikacija FTP med poskusom nalaganja naslova URL: %U

          + +

          Squid je poslal naslednji ukaz FTP:

          +
          +
          %f
          +
          + +

          Strežnik je odgovoril:

          +
          +
          %F
          +
          %g
          +
          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_FTP_NOT_FOUND squid-5.9/errors/sl/ERR_FTP_NOT_FOUND --- squid-5.8/errors/sl/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_FTP_NOT_FOUND 2023-05-01 10:41:22.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Naslednjega naslova URL ni bilo mogoče naložiti: %U

          + +

          Squid je poslal naslednji ukaz FTP:

          +
          +
          %f
          +
          + +

          Strežnik je odgovoril:

          +
          +
          %F
          +
          %g
          +
          + +

          Vzrok za to je morda FTP naslov URL z navedeno absolutno potjo (kar ni v skladu z RFC 1738). Če je to vzrok, lahko datoteko najdete na lokaciji %B.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_FTP_PUT_CREATED squid-5.9/errors/sl/ERR_FTP_PUT_CREATED --- squid-5.8/errors/sl/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_FTP_PUT_CREATED 2023-05-01 10:41:22.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT je uspel. + + +
          +

          Dejanje je uspelo

          +

          Datoteka ustvarjena

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_FTP_PUT_ERROR squid-5.9/errors/sl/ERR_FTP_PUT_ERROR --- squid-5.8/errors/sl/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_FTP_PUT_ERROR 2023-05-01 10:41:22.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +NAPAKA: Pošiljanje prek FTP spodletelo + + +
          +

          NAPAKA

          +

          Pošiljanje FTP PUT ni uspelo

          +
          +
          + +
          +

          Prišlo je do napake protokola FTP med poskusom nalaganja naslova URL: %U

          + +

          Squid je poslal naslednji ukaz FTP:

          +
          +
          %f
          +
          + +

          Strežnik je odgovoril:

          +
          +
          %F
          +
          + +

          To pomeni, da strežnik FTP morda nima dovoljenj ali prostora, da bi shranil datoteko. Preverite pot, dovoljenja in razpoložljivi prostor na disku ter poskusite znova.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_FTP_PUT_MODIFIED squid-5.9/errors/sl/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/sl/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_FTP_PUT_MODIFIED 2023-05-01 10:41:22.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT je uspel. + + +
          +

          Dejanje je uspelo

          +

          Datoteka posodobljena

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_FTP_UNAVAILABLE squid-5.9/errors/sl/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/sl/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_FTP_UNAVAILABLE 2023-05-01 10:41:22.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Strežnik FTP je bil prezaseden, da bi naložil naslov URL: %U

          + +

          Squid je poslal naslednji ukaz FTP:

          + +
          +
          %f
          +
          + +

          Strežnik je odgovoril:

          +
          +
          %F
          +
          %g
          +
          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_GATEWAY_FAILURE squid-5.9/errors/sl/ERR_GATEWAY_FAILURE --- squid-5.8/errors/sl/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_GATEWAY_FAILURE 2023-05-01 10:41:23.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Napaka posredniškega prehoda

          +
          + +

          Te zahteve ni mogoče izpolniti zaradi nepopravljive notranje napake ali napačnih nastavitev.

          + +

          To je lahko posledica omejitev, ki jih je določil internetni ponudnik, ki oskrbuje ta predpomnilnik. Za podrobnejše informacije se obrnite neposredno nanj.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_ICAP_FAILURE squid-5.9/errors/sl/ERR_ICAP_FAILURE --- squid-5.8/errors/sl/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_ICAP_FAILURE 2023-05-01 10:41:23.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Napaka ICAP protokola.

          +
          + +

          Sistem je odvrnil: %E

          + +

          To pomeni, da je med izmenjavo podatkov ICAP prišlo do napake.

          + +

          Težave so lahko med drugim:

          +
            +
          • Strežnik ICAP ni dosegljiv.

          • +
          • Odgovor, prejet od strežnika ICAP, je neveljaven.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_INVALID_REQ squid-5.9/errors/sl/ERR_INVALID_REQ --- squid-5.8/errors/sl/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_INVALID_REQ 2023-05-01 10:41:23.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake neveljavna zahteva med izvajanjem zahteve:

          + +
          +
          %R
          +
          + +

          Težave so lahko med drugim:

          +
            +
          • Manjkajoča ali neznana metoda zahteve.

          • +
          • Manjka naslov URL.

          • +
          • Manjka določilo HTTP (HTTP/1.0).

          • +
          • Zahteva je preobsežna.

          • +
          • Manjka podatek Content-Length za zahteve POST ali PUT.

          • +
          • Neveljaven znak v imenu gostitelja; podčrtaji niso dovoljeni.

          • +
          • Prvina HTTP/1.1 Expect: se zahteva od programa HTTP/1.0.

          • +
          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_INVALID_RESP squid-5.9/errors/sl/ERR_INVALID_RESP --- squid-5.8/errors/sl/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_INVALID_RESP 2023-05-01 10:41:23.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake neveljaven odgovor med izvajanjem zahteve:

          + +
          +
          %R
          +
          + +

          Z oddaljenega strežnika prejeto sporočilo HTTP Response je bilo nerazumljivo ali nepravilno oblikovano. Obrnite se na skrbnika spletišča.

          + +

          Po potrebi vam lahko skrbnik vašega predpomnilnika natančneje razloži, za kakšne vrste težavo gre.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_INVALID_URL squid-5.9/errors/sl/ERR_INVALID_URL --- squid-5.8/errors/sl/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_INVALID_URL 2023-05-01 10:41:23.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Neveljaven naslov URL

          +
          + +

          Zahtevani naslov URL vsebuje nepravilnost.

          + +

          Težave so lahko med drugim:

          +
            +
          • Dostopni protokol manjka ali ni pravilen (moral bi biti http:// ipd.)

          • +
          • Manjka ime gostitelja

          • +
          • Neveljaven dvojni ubežni znak v poti URL-Path

          • +
          • Neveljaven znak v imenu gostitelja; podčrtaji niso dovoljeni.

          • +
          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_LIFETIME_EXP squid-5.9/errors/sl/ERR_LIFETIME_EXP --- squid-5.8/errors/sl/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_LIFETIME_EXP 2023-05-01 10:41:24.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Povezava je potekla

          +
          + +

          Squid je prekinil zahtevo, ker je presegla maksimalno trajanje povezave.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_NO_RELAY squid-5.9/errors/sl/ERR_NO_RELAY --- squid-5.8/errors/sl/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_NO_RELAY 2023-05-01 10:41:24.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Ni relejnega strežnika WAIS

          +
          + +

          Za ta predpomnilnik ni določen noben relejni strežnik WAIS! Znesite se nad skrbnikom.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/sl/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/sl/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:41:24.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          V predpomnilniku ni najti veljavnega dokumenta, podana pa je bila direktiva only-if-cached.

          +
          + +

          Podali ste zahtevo s predpomnilniško kontrolno direktivo only-if-cached. Dokumenta ni bilo mogoče najti v predpomnilniku ali pa je zahteval ponovno preverjanje, ki ga direktiva only-if-cached ne dopušča.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/error-details.txt squid-5.9/errors/sl/error-details.txt --- squid-5.8/errors/sl/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/error-details.txt 2023-05-01 10:41:26.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/sl/ERR_PRECONDITION_FAILED squid-5.9/errors/sl/ERR_PRECONDITION_FAILED --- squid-5.8/errors/sl/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_PRECONDITION_FAILED 2023-05-01 10:41:24.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Pogoj ni izpolnjen.

          +
          + +

          To pomeni:

          +
          +

          Vsaj eden izmed pogojev, ki jih je odjemalec HTTP navedel v zaglavju zahteve, je spodletel.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/sl/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/sl/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:41:24.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_READ_ERROR squid-5.9/errors/sl/ERR_READ_ERROR --- squid-5.8/errors/sl/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_READ_ERROR 2023-05-01 10:41:24.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Napaka pri branju

          +
          + +

          Sistem je odvrnil: %E

          + +

          Med branjem podatkov iz omrežja je prišlo do napake. Ponovite zahtevo!

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_READ_TIMEOUT squid-5.9/errors/sl/ERR_READ_TIMEOUT --- squid-5.8/errors/sl/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_READ_TIMEOUT 2023-05-01 10:41:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Potekel je čas pri branju

          +
          + +

          Sistem je odvrnil: %E

          + +

          Med čakanjem na branje podatkov iz omrežja je prišlo do zakasnitve. Morda omrežje ali strežnik ne delujeta ali sta preobremenjena. Ponovite zahtevo!

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/sl/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/sl/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:41:25.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Ni bilo mogoče vzpostaviti varne povezave z %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Ta predpomnilnik in oddaljeni gostitelj nista izpogajala obojestransko zadovoljivih varnostnih nastavitev, da bi lahko obdelala vašo zahtevo. Možno je, da oddaljeni gostitelj ne podpira varnih povezav ali pa njegova varnostna poverila ne zadoščajo temu predpomnilniku.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_SHUTTING_DOWN squid-5.9/errors/sl/ERR_SHUTTING_DOWN --- squid-5.8/errors/sl/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_SHUTTING_DOWN 2023-05-01 10:41:25.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +

          Ta predpomnilnik se ravno zaustavlja in trenutno ne more obdelati vaše zahteve. Poskusite ponoviti zahtevo malo kasneje.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_SOCKET_FAILURE squid-5.9/errors/sl/ERR_SOCKET_FAILURE --- squid-5.8/errors/sl/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_SOCKET_FAILURE 2023-05-01 10:41:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Napaka vtičnice

          +
          + +

          Sistem je odvrnil: %E

          + +

          Squid ne more ustvariti vtičnice TCP, verjetno zaradi preobremenitve. Ponovite zahtevo.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_TOO_BIG squid-5.9/errors/sl/ERR_TOO_BIG --- squid-5.8/errors/sl/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_TOO_BIG 2023-05-01 10:41:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Zahteva ali odgovor sta preobsežna.

          +
          + +

          Če pošiljate zahtevo POST ali PUT, je predmet, ki ga skušate poslati, prevelik.

          +

          Če pošiljate zahtevo GET, je predmet, ki ga skušate pridobiti, prevelik.

          +

          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-5.8/errors/sl/ERR_UNSUP_HTTPVERSION squid-5.9/errors/sl/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/sl/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_UNSUP_HTTPVERSION 2023-05-01 10:41:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Nepodprta različica HTTP

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Nepodprta različica HTTP

          +
          + +

          Ta Squid ne sprejema različice HTTP, ki jo skušate uporabiti.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_UNSUP_REQ squid-5.9/errors/sl/ERR_UNSUP_REQ --- squid-5.8/errors/sl/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_UNSUP_REQ 2023-05-01 10:41:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Nepodprta metoda zahteve in protokol

          +
          + +

          Squid ne podpira vseh metod zahtev za vse protokole dostopa. Tako npr. metode POST ne morete uporabiti za zahtevo Gopher.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_URN_RESOLVE squid-5.9/errors/sl/ERR_URN_RESOLVE --- squid-5.8/errors/sl/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_URN_RESOLVE 2023-05-01 10:41:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +NAPAKA: Zahtevanega imena URN ni bilo mogoče naložiti + + +
          +

          NAPAKA

          +

          Ni bilo mogoče naložiti naslova URL za zahtevano ime URN

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja URN: %U

          + +
          +

          Ni mogoče razrešiti imena URN

          +
          + +

          Od imen URN na %T ne pričakujte preveč :)

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_WRITE_ERROR squid-5.9/errors/sl/ERR_WRITE_ERROR --- squid-5.8/errors/sl/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_WRITE_ERROR 2023-05-01 10:41:26.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Napaka pri pisanju

          +
          + +

          Sistem je odvrnil: %E

          + +

          Med pisanjem v omrežje je prišlo do napake. Ponovite zahtevo!

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sl/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/sl/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/sl/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sl/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:41:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +NAPAKA: Zahtevanega naslova URL ni bilo mogoče naložiti. + + +
          +

          NAPAKA

          +

          Zahtevanega naslova URL ni bilo mogoče naložiti

          +
          +
          + +
          +

          Prišlo je do napake med poskusom nalaganja naslova URL: %U

          + +
          +

          Odgovor z velikostjo nič

          +
          + +

          Squid za to zahtevo ni prejel nobenih podatkov.

          + +

          Skrbnik vašega predpomnilnika je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-cyrl/ERR_ACCESS_DENIED squid-5.9/errors/sr-cyrl/ERR_ACCESS_DENIED --- squid-5.8/errors/sr-cyrl/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_ACCESS_DENIED 2023-05-01 10:41:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/sr-cyrl/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/sr-cyrl/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:41:27.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_AGENT_CONFIGURE squid-5.9/errors/sr-cyrl/ERR_AGENT_CONFIGURE --- squid-5.8/errors/sr-cyrl/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_AGENT_CONFIGURE 2023-05-01 10:41:27.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_AGENT_WPAD squid-5.9/errors/sr-cyrl/ERR_AGENT_WPAD --- squid-5.8/errors/sr-cyrl/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_AGENT_WPAD 2023-05-01 10:41:27.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/sr-cyrl/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/sr-cyrl/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:41:27.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/sr-cyrl/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/sr-cyrl/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:41:27.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_CANNOT_FORWARD squid-5.9/errors/sr-cyrl/ERR_CANNOT_FORWARD --- squid-5.8/errors/sr-cyrl/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_CANNOT_FORWARD 2023-05-01 10:41:28.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-cyrl/ERR_CONFLICT_HOST squid-5.9/errors/sr-cyrl/ERR_CONFLICT_HOST --- squid-5.8/errors/sr-cyrl/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_CONFLICT_HOST 2023-05-01 10:41:28.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-cyrl/ERR_CONNECT_FAIL squid-5.9/errors/sr-cyrl/ERR_CONNECT_FAIL --- squid-5.8/errors/sr-cyrl/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_CONNECT_FAIL 2023-05-01 10:41:28.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_DIR_LISTING squid-5.9/errors/sr-cyrl/ERR_DIR_LISTING --- squid-5.8/errors/sr-cyrl/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_DIR_LISTING 2023-05-01 10:41:28.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-cyrl/ERR_DNS_FAIL squid-5.9/errors/sr-cyrl/ERR_DNS_FAIL --- squid-5.8/errors/sr-cyrl/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_DNS_FAIL 2023-05-01 10:41:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_ESI squid-5.9/errors/sr-cyrl/ERR_ESI --- squid-5.8/errors/sr-cyrl/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_ESI 2023-05-01 10:41:28.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_FORWARDING_DENIED squid-5.9/errors/sr-cyrl/ERR_FORWARDING_DENIED --- squid-5.8/errors/sr-cyrl/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_FORWARDING_DENIED 2023-05-01 10:41:29.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_FTP_DISABLED squid-5.9/errors/sr-cyrl/ERR_FTP_DISABLED --- squid-5.8/errors/sr-cyrl/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_FTP_DISABLED 2023-05-01 10:41:29.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_FTP_FAILURE squid-5.9/errors/sr-cyrl/ERR_FTP_FAILURE --- squid-5.8/errors/sr-cyrl/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_FTP_FAILURE 2023-05-01 10:41:29.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_FTP_FORBIDDEN squid-5.9/errors/sr-cyrl/ERR_FTP_FORBIDDEN --- squid-5.8/errors/sr-cyrl/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_FTP_FORBIDDEN 2023-05-01 10:41:29.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_FTP_NOT_FOUND squid-5.9/errors/sr-cyrl/ERR_FTP_NOT_FOUND --- squid-5.8/errors/sr-cyrl/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_FTP_NOT_FOUND 2023-05-01 10:41:29.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_FTP_PUT_CREATED squid-5.9/errors/sr-cyrl/ERR_FTP_PUT_CREATED --- squid-5.8/errors/sr-cyrl/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_FTP_PUT_CREATED 2023-05-01 10:41:30.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operation successful

          +

          File created

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-cyrl/ERR_FTP_PUT_ERROR squid-5.9/errors/sr-cyrl/ERR_FTP_PUT_ERROR --- squid-5.8/errors/sr-cyrl/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_FTP_PUT_ERROR 2023-05-01 10:41:30.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_FTP_PUT_MODIFIED squid-5.9/errors/sr-cyrl/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/sr-cyrl/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_FTP_PUT_MODIFIED 2023-05-01 10:41:30.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operation successful

          +

          File updated

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-cyrl/ERR_FTP_UNAVAILABLE squid-5.9/errors/sr-cyrl/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/sr-cyrl/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_FTP_UNAVAILABLE 2023-05-01 10:41:30.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_GATEWAY_FAILURE squid-5.9/errors/sr-cyrl/ERR_GATEWAY_FAILURE --- squid-5.8/errors/sr-cyrl/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_GATEWAY_FAILURE 2023-05-01 10:41:30.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_ICAP_FAILURE squid-5.9/errors/sr-cyrl/ERR_ICAP_FAILURE --- squid-5.8/errors/sr-cyrl/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_ICAP_FAILURE 2023-05-01 10:41:30.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +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:

          +
            +
          • The ICAP server is not reachable.

          • +
          • An Illegal response was received from the ICAP server.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-cyrl/ERR_INVALID_REQ squid-5.9/errors/sr-cyrl/ERR_INVALID_REQ --- squid-5.8/errors/sr-cyrl/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_INVALID_REQ 2023-05-01 10:41:31.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +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.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/sr-cyrl/ERR_INVALID_RESP squid-5.9/errors/sr-cyrl/ERR_INVALID_RESP --- squid-5.8/errors/sr-cyrl/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_INVALID_RESP 2023-05-01 10:41:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_INVALID_URL squid-5.9/errors/sr-cyrl/ERR_INVALID_URL --- squid-5.8/errors/sr-cyrl/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_INVALID_URL 2023-05-01 10:41:31.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_LIFETIME_EXP squid-5.9/errors/sr-cyrl/ERR_LIFETIME_EXP --- squid-5.8/errors/sr-cyrl/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_LIFETIME_EXP 2023-05-01 10:41:31.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_NO_RELAY squid-5.9/errors/sr-cyrl/ERR_NO_RELAY --- squid-5.8/errors/sr-cyrl/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_NO_RELAY 2023-05-01 10:41:31.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/sr-cyrl/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/sr-cyrl/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:41:32.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/sr-cyrl/error-details.txt squid-5.9/errors/sr-cyrl/error-details.txt --- squid-5.8/errors/sr-cyrl/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/error-details.txt 2023-05-01 10:41:34.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/sr-cyrl/ERR_PRECONDITION_FAILED squid-5.9/errors/sr-cyrl/ERR_PRECONDITION_FAILED --- squid-5.8/errors/sr-cyrl/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_PRECONDITION_FAILED 2023-05-01 10:41:32.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-cyrl/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/sr-cyrl/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/sr-cyrl/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:41:32.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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 Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-cyrl/ERR_READ_ERROR squid-5.9/errors/sr-cyrl/ERR_READ_ERROR --- squid-5.8/errors/sr-cyrl/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_READ_ERROR 2023-05-01 10:41:32.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_READ_TIMEOUT squid-5.9/errors/sr-cyrl/ERR_READ_TIMEOUT --- squid-5.8/errors/sr-cyrl/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_READ_TIMEOUT 2023-05-01 10:41:32.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/sr-cyrl/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/sr-cyrl/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:41:32.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +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

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/sr-cyrl/ERR_SHUTTING_DOWN squid-5.9/errors/sr-cyrl/ERR_SHUTTING_DOWN --- squid-5.8/errors/sr-cyrl/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_SHUTTING_DOWN 2023-05-01 10:41:33.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_SOCKET_FAILURE squid-5.9/errors/sr-cyrl/ERR_SOCKET_FAILURE --- squid-5.8/errors/sr-cyrl/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_SOCKET_FAILURE 2023-05-01 10:41:33.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_TOO_BIG squid-5.9/errors/sr-cyrl/ERR_TOO_BIG --- squid-5.8/errors/sr-cyrl/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_TOO_BIG 2023-05-01 10:41:33.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_UNSUP_HTTPVERSION squid-5.9/errors/sr-cyrl/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/sr-cyrl/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_UNSUP_HTTPVERSION 2023-05-01 10:41:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_UNSUP_REQ squid-5.9/errors/sr-cyrl/ERR_UNSUP_REQ --- squid-5.8/errors/sr-cyrl/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_UNSUP_REQ 2023-05-01 10:41:33.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_URN_RESOLVE squid-5.9/errors/sr-cyrl/ERR_URN_RESOLVE --- squid-5.8/errors/sr-cyrl/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_URN_RESOLVE 2023-05-01 10:41:34.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_WRITE_ERROR squid-5.9/errors/sr-cyrl/ERR_WRITE_ERROR --- squid-5.8/errors/sr-cyrl/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_WRITE_ERROR 2023-05-01 10:41:34.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +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-5.8/errors/sr-cyrl/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/sr-cyrl/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/sr-cyrl/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-cyrl/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:41:34.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +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-5.8/errors/sr-latn/ERR_ACCESS_DENIED squid-5.9/errors/sr-latn/ERR_ACCESS_DENIED --- squid-5.8/errors/sr-latn/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_ACCESS_DENIED 2023-05-01 10:41:34.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Pristup nije dozvoljen.

          +
          + +

          Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/sr-latn/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/sr-latn/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:41:34.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          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-5.8/errors/sr-latn/ERR_AGENT_CONFIGURE squid-5.9/errors/sr-latn/ERR_AGENT_CONFIGURE --- squid-5.8/errors/sr-latn/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_AGENT_CONFIGURE 2023-05-01 10:41:34.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          GREŠKA

          +

          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.
          • +
          +
          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_AGENT_WPAD squid-5.9/errors/sr-latn/ERR_AGENT_WPAD --- squid-5.8/errors/sr-latn/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_AGENT_WPAD 2023-05-01 10:41:35.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          GREŠKA

          +

          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
          • +
          +
          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/sr-latn/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/sr-latn/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:41:35.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +GREŠKA: Pristup proksi/keš serveru nije dozvoljen + + +
          +

          GREŠKA

          +

          Pristup proksi/keš serveru nije dozvoljen.

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Pristup proksi/keš serveru nije dozvoljen.

          +
          + +

          Na žalost nije vam dozvoljen da zahtev %U od ovog proksi servera ukoliko se ne autentifikujete.

          + +

          Please contact the cache administrator if you have difficulties authenticating yourself.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/sr-latn/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/sr-latn/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:41:35.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +GREŠKA: Pristup proksi/keš server menadžeru nije dozvoljen + + +
          +

          GREŠKA

          +

          Pristup proksi/keš server menadžeru nije dozvoljen.

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Pristup proksi/keš server menadžeru nije dozvoljen.

          +
          + +

          Na žalost nije vam dozvoljen da zahtevat %U od ovog keš menadžera ukoliko se ne autentifikujete.

          + +

          Molimo kontaktirajte proksi administratora ako imate probplema sa autentifikacijom ili, ako vi jeste administrator, pročitajte dokumentaciju o Squid keš menadžeru i proverite keš žurnal za detaljnije poruke o grešakama.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_CANNOT_FORWARD squid-5.9/errors/sr-latn/ERR_CANNOT_FORWARD --- squid-5.8/errors/sr-latn/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_CANNOT_FORWARD 2023-05-01 10:41:35.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Vaš zahtev ne može da se prosledi u ovom trenutku.

          +
          + +

          This request could not be forwarded to the origin server or to any parent caches.

          + +

          Mogući problemi su:

          +
            +
          • 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.
          • +
          + +

          Vaš keš/proksi administrator je: %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_CONFLICT_HOST squid-5.9/errors/sr-latn/ERR_CONFLICT_HOST --- squid-5.8/errors/sr-latn/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_CONFLICT_HOST 2023-05-01 10:41:35.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (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.

          + +

          Mogući problemi su:

          +
            +
          • 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.
          • +
          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_CONNECT_FAIL squid-5.9/errors/sr-latn/ERR_CONNECT_FAIL --- squid-5.8/errors/sr-latn/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_CONNECT_FAIL 2023-05-01 10:41:35.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Konekcija ka %I nije uspela.

          +
          + +

          Odgovor sistema je: %E

          + +

          The remote host or network may be down. Please try the request again.

          + +

          Vaš keš/proksi administrator je: %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_DIR_LISTING squid-5.9/errors/sr-latn/ERR_DIR_LISTING --- squid-5.8/errors/sr-latn/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_DIR_LISTING 2023-05-01 10:41:36.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Direktorijum %U + + +
          +

          Direktorijum: %U/

          +
          +
          + +
          +

          Sadržaj direktorijuma:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Nadređeni direktorijum (Osnovni direktorijum)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_DNS_FAIL squid-5.9/errors/sr-latn/ERR_DNS_FAIL --- squid-5.8/errors/sr-latn/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_DNS_FAIL 2023-05-01 10:41:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Nije moguæe odrediti IP adresu iz imena raèunara za %H

          +
          + +

          DNS server je vratio informaciju:

          +
          +
          %z
          +
          + +

          što znaèi proksi server nije u stanju da identifikuje ime raèunara koje se nalazi u adresi (URL). Proverite da li je adresa ispravna.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_ESI squid-5.9/errors/sr-latn/ERR_ESI --- squid-5.8/errors/sr-latn/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_ESI 2023-05-01 10:41:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          ESI obrada nije uspela.

          +
          + +

          ESI procesor je vratio:

          +
          +
          %Z
          +
          + +

          This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

          + +

          Vaš webmaster je %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_FORWARDING_DENIED squid-5.9/errors/sr-latn/ERR_FORWARDING_DENIED --- squid-5.8/errors/sr-latn/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_FORWARDING_DENIED 2023-05-01 10:41:36.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Prosleđivanje nije dozvoljeno.

          +
          + +

          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.

          + +

          Vaš keš/proksi administrator je: %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_FTP_DISABLED squid-5.9/errors/sr-latn/ERR_FTP_DISABLED --- squid-5.8/errors/sr-latn/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_FTP_DISABLED 2023-05-01 10:41:36.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          FTP je onemogućen.

          +
          + +

          Ovaj proksi server ne podržava FTP.

          + +

          Vaš keš/proksi administrator je: %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_FTP_FAILURE squid-5.9/errors/sr-latn/ERR_FTP_FAILURE --- squid-5.8/errors/sr-latn/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_FTP_FAILURE 2023-05-01 10:41:37.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška u FTP protokolu prilikom učitavanja adrese (URL): %U

          + +

          Squid je poslao sledeæu FTP komandu:

          +
          +
          %f
          +
          + +

          Odgovor servera:

          +
          +
          %F
          +
          %g
          +
          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_FTP_FORBIDDEN squid-5.9/errors/sr-latn/ERR_FTP_FORBIDDEN --- squid-5.8/errors/sr-latn/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_FTP_FORBIDDEN 2023-05-01 10:41:37.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Nije uspela FTP autentifikacija prilikom učitavanja adrese (URL): %U.

          + +

          Squid je poslao sledeæu FTP komandu:

          +
          +
          %f
          +
          + +

          Odgovor servera:

          +
          +
          %F
          +
          %g
          +
          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_FTP_NOT_FOUND squid-5.9/errors/sr-latn/ERR_FTP_NOT_FOUND --- squid-5.8/errors/sr-latn/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_FTP_NOT_FOUND 2023-05-01 10:41:37.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Adresa (URL) nije dostupna: %U

          + +

          Squid je poslao sledeæu FTP komandu:

          +
          +
          %f
          +
          + +

          Odgovor servera:

          +
          +
          %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.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_FTP_PUT_CREATED squid-5.9/errors/sr-latn/ERR_FTP_PUT_CREATED --- squid-5.8/errors/sr-latn/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_FTP_PUT_CREATED 2023-05-01 10:41:37.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operacija uspešna

          +

          Fajl je kreiran

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_FTP_PUT_ERROR squid-5.9/errors/sr-latn/ERR_FTP_PUT_ERROR --- squid-5.8/errors/sr-latn/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_FTP_PUT_ERROR 2023-05-01 10:41:37.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +GREŠKA: FTP upis/upload nije uspeo + + +
          +

          GREŠKA

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          Greška u FTP protokolu prilikom učitavanja adrese (URL): %U

          + +

          Squid je poslao sledeæu FTP komandu:

          +
          +
          %f
          +
          + +

          Odgovor servera:

          +
          +
          %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.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_FTP_PUT_MODIFIED squid-5.9/errors/sr-latn/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/sr-latn/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_FTP_PUT_MODIFIED 2023-05-01 10:41:37.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operacija uspešna

          +

          Fajl je osvežen

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_FTP_UNAVAILABLE squid-5.9/errors/sr-latn/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/sr-latn/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_FTP_UNAVAILABLE 2023-05-01 10:41:38.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          FTP server je bio preopterećen prilikom učitavanja adrese (URL): %U

          + +

          Squid je poslao sledeæu FTP komandu:

          + +
          +
          %f
          +
          + +

          Odgovor servera:

          +
          +
          %F
          +
          %g
          +
          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_GATEWAY_FAILURE squid-5.9/errors/sr-latn/ERR_GATEWAY_FAILURE --- squid-5.8/errors/sr-latn/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_GATEWAY_FAILURE 2023-05-01 10:41:38.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Gateway Proxy Failure

          +
          + +

          Interna greška ili problem sa konfiguracijom ne dozvoljava da se zahtev obradi.

          + +

          This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_ICAP_FAILURE squid-5.9/errors/sr-latn/ERR_ICAP_FAILURE --- squid-5.8/errors/sr-latn/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_ICAP_FAILURE 2023-05-01 10:41:38.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Greška u ICAP protokolu.

          +
          + +

          Odgovor sistema je: %E

          + +

          This means that some aspect of the ICAP communication failed.

          + +

          Mogući problemi su:

          +
            +
          • ICAP server je nedostupan.

          • +
          • Neispravan odgovor ICAP servera.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_INVALID_REQ squid-5.9/errors/sr-latn/ERR_INVALID_REQ --- squid-5.8/errors/sr-latn/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_INVALID_REQ 2023-05-01 10:41:38.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Neispravan zahtev greška prilikom obrade vašeg zahteva:

          + +
          +
          %R
          +
          + +

          Mogući problemi su:

          +
            +
          • Zahtevani metod pristupa je nepoznat.

          • +
          • Nedostaje adresa (URL).

          • +
          • Nedostaje HTTP identifikator (HTTP/1.0).

          • +
          • Zahtev je prevelik.

          • +
          • Nedostaje dužina sadržaja za POST ili PUT zahtev.

          • +
          • Nedozvoljeni karakteri u imenu računara; donja crta (_) nije dozvoljena.

          • +
          • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

          • +
          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_INVALID_RESP squid-5.9/errors/sr-latn/ERR_INVALID_RESP --- squid-5.8/errors/sr-latn/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_INVALID_RESP 2023-05-01 10:41:38.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Neispravan odgovor greška prilikom obrade vašeg zahteva:

          + +
          +
          %R
          +
          + +

          HTTP odgovor dobijen od kontaktiranog servera nije moguće razumeti ili je na neki način pogrešno formiran. Molimo kontaktirajte operatora sajta.

          + +

          Your cache administrator may be able to provide you with more details about the exact nature of the problem if needed.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_INVALID_URL squid-5.9/errors/sr-latn/ERR_INVALID_URL --- squid-5.8/errors/sr-latn/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_INVALID_URL 2023-05-01 10:41:39.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Neispravna adresa (URL)

          +
          + +

          Jedan od aspekata zahtevane adrese (URL) nije ispravan.

          + +

          Mogući problemi su:

          +
            +
          • Protokol pristupa je neispravan (treba da bude http:// ili slično)

          • +
          • Nedostaje ime računara (servera)

          • +
          • Nedozvoljene dvostruke "escape" sekvence u URL putanji

          • +
          • Nedozvoljeni karakteri u imenu računara; donja crta (_) nije dozvoljena.

          • +
          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_LIFETIME_EXP squid-5.9/errors/sr-latn/ERR_LIFETIME_EXP --- squid-5.8/errors/sr-latn/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_LIFETIME_EXP 2023-05-01 10:41:39.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Trajanje konekcije prekoračeno

          +
          + +

          Squid Proksi server je prekinuo konekciju jer je prekoraèila dozvoljeno trajanje konekcije.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_NO_RELAY squid-5.9/errors/sr-latn/ERR_NO_RELAY --- squid-5.8/errors/sr-latn/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_NO_RELAY 2023-05-01 10:41:39.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Nema Wais servera

          +
          + +

          There is no WAIS Relay host defined for this Cache! Yell at the administrator.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/sr-latn/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/sr-latn/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:41:39.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          U kešu nije naðen validan dokument a specificirane je direktiva only-if-cached.

          +
          + +

          Za vaš zahtev postavljena je only-if-cached proksi direktiva.Dokument nije naðen u proksi arhivi, ili se zahteva revalidacija kojaje zabranjena direktivom only-if-cached.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/error-details.txt squid-5.9/errors/sr-latn/error-details.txt --- squid-5.8/errors/sr-latn/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/error-details.txt 2023-05-01 10:41:41.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/sr-latn/ERR_PRECONDITION_FAILED squid-5.9/errors/sr-latn/ERR_PRECONDITION_FAILED --- squid-5.8/errors/sr-latn/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_PRECONDITION_FAILED 2023-05-01 10:41:39.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (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-5.8/errors/sr-latn/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/sr-latn/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/sr-latn/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:41:39.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_READ_ERROR squid-5.9/errors/sr-latn/ERR_READ_ERROR --- squid-5.8/errors/sr-latn/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_READ_ERROR 2023-05-01 10:41:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Greška čitanja

          +
          + +

          Odgovor sistema je: %E

          + +

          An error condition occurred while reading data from the network. Please retry your request.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_READ_TIMEOUT squid-5.9/errors/sr-latn/ERR_READ_TIMEOUT --- squid-5.8/errors/sr-latn/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_READ_TIMEOUT 2023-05-01 10:41:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Zastoj čitanja

          +
          + +

          Odgovor sistema je: %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.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/sr-latn/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/sr-latn/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:41:40.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Nije uspelo uspostavljanje sigurne veze sa %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Ovaj proksi i udaljeni server nisu uspeli da se dogovore oko sigunosnih podešavanja za izvršavanje vašeg zahteva. Moguce je da je udaljeni server ne podržava sigune konekcije, ili da proksi nije zadovoljan sa pravilima sigunosti udaljenog servera.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_SHUTTING_DOWN squid-5.9/errors/sr-latn/ERR_SHUTTING_DOWN --- squid-5.8/errors/sr-latn/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_SHUTTING_DOWN 2023-05-01 10:41:40.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (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.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_SOCKET_FAILURE squid-5.9/errors/sr-latn/ERR_SOCKET_FAILURE --- squid-5.8/errors/sr-latn/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_SOCKET_FAILURE 2023-05-01 10:41:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Greška prilikom uspostavljanja konekcije (Socket)

          +
          + +

          Odgovor sistema je: %E

          + +

          Squid nije u stanju da kreira TCP socket, verovatno zbog preoptereæenosti. Molimo pokušajte ponovo.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_TOO_BIG squid-5.9/errors/sr-latn/ERR_TOO_BIG --- squid-5.8/errors/sr-latn/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_TOO_BIG 2023-05-01 10:41:41.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Zahtev ili odgovor je prevelik.

          +
          + +

          Ukoliko je vaš zahtev POST ili PUT, onda je podatak koji pokušavate da upišete prevelik.

          +

          Ako ste uputili GET zahtev, onda je podatak koji tražite prevelik.

          +

          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-5.8/errors/sr-latn/ERR_UNSUP_HTTPVERSION squid-5.9/errors/sr-latn/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/sr-latn/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_UNSUP_HTTPVERSION 2023-05-01 10:41:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Unsupported HTTP version

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Unsupported HTTP version

          +
          + +

          Squid server ne može da obradi HTTP verziju koju koristite.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_UNSUP_REQ squid-5.9/errors/sr-latn/ERR_UNSUP_REQ --- squid-5.8/errors/sr-latn/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_UNSUP_REQ 2023-05-01 10:41:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Nepodržan metod ili protokol zahteva (Request)

          +
          + +

          Squid Proksi server ne podržava sve metode zahteva za sve moguæe pristupne protokole. Na primer ne možete da uradite POST na Gopher zahtev.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_URN_RESOLVE squid-5.9/errors/sr-latn/ERR_URN_RESOLVE --- squid-5.8/errors/sr-latn/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_URN_RESOLVE 2023-05-01 10:41:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          GREŠKA

          +

          Adresa (URL) za traženi podatak (URN) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka (URN): %U

          + +
          +

          Nije moguće prepoznati URN

          +
          + +

          Hej, ne očekuj previše od URN-a na %T :)

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_WRITE_ERROR squid-5.9/errors/sr-latn/ERR_WRITE_ERROR --- squid-5.8/errors/sr-latn/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_WRITE_ERROR 2023-05-01 10:41:41.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Greška u upisu

          +
          + +

          Odgovor sistema je: %E

          + +

          An error condition occurred while writing to the network. Please retry your request.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sr-latn/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/sr-latn/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/sr-latn/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sr-latn/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:41:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +GREŠKA: Tražena adresa (URL) ne može da se učita + + +
          +

          GREŠKA

          +

          Tražena adresa (URL) ne može da se učita

          +
          +
          + +
          +

          Greška učitavanja podataka sa adrese (URL): %U

          + +
          +

          Odgovor nulte dužine

          +
          + +

          Squid proksi nije dobio nikakve podatke na vaš zahtev.

          + +

          Vaš keš/proksi administrator je: %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_ACCESS_DENIED squid-5.9/errors/sv/ERR_ACCESS_DENIED --- squid-5.8/errors/sv/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_ACCESS_DENIED 2023-05-01 10:41:42.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Tillträde Nekas.

          +
          + +

          Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/sv/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/sv/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:41:42.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av 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.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_AGENT_CONFIGURE squid-5.9/errors/sv/ERR_AGENT_CONFIGURE --- squid-5.8/errors/sv/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_AGENT_CONFIGURE 2023-05-01 10:41:42.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          FEL

          +

          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.
          • +
          +
          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_AGENT_WPAD squid-5.9/errors/sv/ERR_AGENT_WPAD --- squid-5.8/errors/sv/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_AGENT_WPAD 2023-05-01 10:41:42.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          FEL

          +

          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
          • +
          +
          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/sv/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/sv/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:41:42.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEL: Tillträde nekas + + +
          +

          FEL

          +

          Tillträde till Cache Nekas.

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Tillträde till Cache Nekas.

          +
          + +

          Ledsen, Ni är förnärvarande ej berättigad att begära %U från denna cache tills det att Ni har autentifierat Er.

          + +

          Please contact the cache administrator if you have difficulties authenticating yourself.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/sv/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/sv/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:41:42.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEL: Tillträde till Cachehanteraren Nekas + + +
          +

          FEL

          +

          Tillträde till Cachehanteraren Nekas.

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Tillträde till Cachehanteraren Nekas.

          +
          + +

          Ledsen, Ni är förnärvarande ej berättigad att begära %U från denna cache tills det att Ni har autentifierat Er.

          + +

          Vänligen kontakta cacheadministratorn om Ni har svårigheter med att autentifiera Er själv, om Ni är administratorn, läs Squid dokumentationen om cache hanterar interfacet och kontrollera cache loggen för mer detaljerade felmeddelanden.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_CANNOT_FORWARD squid-5.9/errors/sv/ERR_CANNOT_FORWARD --- squid-5.8/errors/sv/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_CANNOT_FORWARD 2023-05-01 10:41:43.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Kunde ej vidarebefodra förfrågan vid detta tillfälle.

          +
          + +

          This request could not be forwarded to the origin server or to any parent caches.

          + +

          Några möjliga problem är:

          +
            +
          • 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.
          • +
          + +

          Din cacheserver administratör är %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_CONFLICT_HOST squid-5.9/errors/sv/ERR_CONFLICT_HOST --- squid-5.8/errors/sv/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_CONFLICT_HOST 2023-05-01 10:41:43.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av 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.

          + +

          Några möjliga problem är:

          +
            +
          • 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.
          • +
          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_CONNECT_FAIL squid-5.9/errors/sv/ERR_CONNECT_FAIL --- squid-5.8/errors/sv/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_CONNECT_FAIL 2023-05-01 10:41:43.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Anslutnings att %I misslyckades.

          +
          + +

          Systemet returnerade: %E

          + +

          The remote host or network may be down. Please try the request again.

          + +

          Din cacheserver administratör är %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_DIR_LISTING squid-5.9/errors/sv/ERR_DIR_LISTING --- squid-5.8/errors/sv/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_DIR_LISTING 2023-05-01 10:41:43.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Katalog: %U + + +
          +

          Katalog: %U/

          +
          +
          + +
          +

          Mappinnehåll:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Föregående katalog (Rootkatalog)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_DNS_FAIL squid-5.9/errors/sv/ERR_DNS_FAIL --- squid-5.8/errors/sv/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_DNS_FAIL 2023-05-01 10:41:43.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Kunde inte få fram IP-adressen för värdnamnet %H

          +
          + +

          DNS namnservern svarade:

          +
          +
          %z
          +
          + +

          Detta betyder att cachen kunde inte lösa upp värdnamnet angivet i begärd URL. Kontrollera att adressen är korrekt.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_ESI squid-5.9/errors/sv/ERR_ESI --- squid-5.8/errors/sv/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_ESI 2023-05-01 10:41:44.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          ESI bearbetning misslyckades.

          +
          + +

          ESI motorn returnerade:

          +
          +
          %Z
          +
          + +

          Detta betyder att surrogat servern kunde inte bearbeta ESI mallen. Vänligen kontakta den ansvariga för webbservern ifråga.

          + +

          Addressen till ansvarig administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_FORWARDING_DENIED squid-5.9/errors/sv/ERR_FORWARDING_DENIED --- squid-5.8/errors/sv/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_FORWARDING_DENIED 2023-05-01 10:41:44.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Vidarebefodran Nekad.

          +
          + +

          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.

          + +

          Din cacheserver administratör är %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_FTP_DISABLED squid-5.9/errors/sv/ERR_FTP_DISABLED --- squid-5.8/errors/sv/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_FTP_DISABLED 2023-05-01 10:41:44.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          FTP är Avstängd

          +
          + +

          Denna cache stödjer inte FTP.

          + +

          Din cacheserver administratör är %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_FTP_FAILURE squid-5.9/errors/sv/ERR_FTP_FAILURE --- squid-5.8/errors/sv/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_FTP_FAILURE 2023-05-01 10:41:44.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Ett FTP protokollfel inträffade vid försöket att hämta URL: %U

          + +

          Squid sände följande FTP kommando:

          +
          +
          %f
          +
          + +

          Servern svarade med:

          +
          +
          %F
          +
          %g
          +
          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_FTP_FORBIDDEN squid-5.9/errors/sv/ERR_FTP_FORBIDDEN --- squid-5.8/errors/sv/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_FTP_FORBIDDEN 2023-05-01 10:41:44.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Ett misslyckande vid FTP autentifiering inträffade vid försöket att hämta URL: %U

          + +

          Squid sände följande FTP kommando:

          +
          +
          %f
          +
          + +

          Servern svarade med:

          +
          +
          %F
          +
          %g
          +
          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_FTP_NOT_FOUND squid-5.9/errors/sv/ERR_FTP_NOT_FOUND --- squid-5.8/errors/sv/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_FTP_NOT_FOUND 2023-05-01 10:41:44.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande URL kunde inte hämtas: %U

          + +

          Squid sände följande FTP kommando:

          +
          +
          %f
          +
          + +

          Servern svarade med:

          +
          +
          %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.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_FTP_PUT_CREATED squid-5.9/errors/sv/ERR_FTP_PUT_CREATED --- squid-5.8/errors/sv/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_FTP_PUT_CREATED 2023-05-01 10:41:45.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operationen lyckades

          +

          Filein skapades

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_FTP_PUT_ERROR squid-5.9/errors/sv/ERR_FTP_PUT_ERROR --- squid-5.8/errors/sv/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_FTP_PUT_ERROR 2023-05-01 10:41:45.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FEL: FTP uppladdning misslyckades + + +
          +

          FEL

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          Ett FTP protokollfel inträffade vid försöket att hämta URL: %U

          + +

          Squid sände följande FTP kommando:

          +
          +
          %f
          +
          + +

          Servern svarade med:

          +
          +
          %F
          +
          + +

          Detta betyder att rättighet eller utrymme saknas på FTP servern för att lagra filen. Kontrollera sökväg, rättigheter och diskutrymme och försök igen.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_FTP_PUT_MODIFIED squid-5.9/errors/sv/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/sv/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_FTP_PUT_MODIFIED 2023-05-01 10:41:45.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Operationen lyckades

          +

          Filen uppdaterades

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_FTP_UNAVAILABLE squid-5.9/errors/sv/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/sv/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_FTP_UNAVAILABLE 2023-05-01 10:41:45.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          FTP servern var ej tillgänglig vid försöket att hämta URL: %U

          + +

          Squid sände följande FTP kommando:

          + +
          +
          %f
          +
          + +

          Servern svarade med:

          +
          +
          %F
          +
          %g
          +
          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_GATEWAY_FAILURE squid-5.9/errors/sv/ERR_GATEWAY_FAILURE --- squid-5.8/errors/sv/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_GATEWAY_FAILURE 2023-05-01 10:41:45.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av 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.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_ICAP_FAILURE squid-5.9/errors/sv/ERR_ICAP_FAILURE --- squid-5.8/errors/sv/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_ICAP_FAILURE 2023-05-01 10:41:45.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          ICAP protokollfel.

          +
          + +

          Systemet returnerade: %E

          + +

          Detta betyder att ICAP kommunikationen misslyckades.

          + +

          Några möjliga problem är:

          +
            +
          • ICAP servern är ej nåbar.

          • +
          • Svaret från ICAP servern är ogiltigt och kan inte tolkas.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_INVALID_REQ squid-5.9/errors/sv/ERR_INVALID_REQ --- squid-5.8/errors/sv/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_INVALID_REQ 2023-05-01 10:41:46.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Felaktig Förfråan fel påträffades när förfrågan skulle behandlas:

          + +
          +
          %R
          +
          + +

          Några möjliga problem är:

          +
            +
          • Avsaknad eller okänd method för förfrågan.

          • +
          • URL saknas.

          • +
          • Avsaknad HTTP identifierare (HTTP/1.0).

          • +
          • Förfrågan är för stor.

          • +
          • Content-Length saknas i POST eller PUT begäran.

          • +
          • Ej tillåtet tecken i värdnamnet; understryckningstecken är ej tillåtna.

          • +
          • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

          • +
          + +

          Din cacheserver administratör är %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_INVALID_RESP squid-5.9/errors/sv/ERR_INVALID_RESP --- squid-5.8/errors/sv/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_INVALID_RESP 2023-05-01 10:41:46.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Felaktigt Svarsmeddelande fel påträffades när förfrågan skulle behandlas:

          + +
          +
          %R
          +
          + +

          HTTP svarsmeddelandet ifrån den kontaktade servern är felaktigt och kunde inte tolkas. Vänligen kontakta den ansvariga för webbservern ifråga.

          + +

          Din cacheserver administratör man eventuellt ge dig mera information om det specifika problemet med denna sida.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_INVALID_URL squid-5.9/errors/sv/ERR_INVALID_URL --- squid-5.8/errors/sv/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_INVALID_URL 2023-05-01 10:41:46.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Felaktig URL

          +
          + +

          Någon eller några aspekter av begärd URL är inkorrekta.

          + +

          Några möjliga problem är:

          +
            +
          • Avsaknat eller felaktigt tillträdesprotokoll (ska vara http:// eller liknande)

          • +
          • Avsaknat värdnamn

          • +
          • Ej tillåten dubbel-escape i URL-Sökvägen

          • +
          • Ej tillåtet tecken i värdnamnet; understryckningstecken är ej tillåtna.

          • +
          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_LIFETIME_EXP squid-5.9/errors/sv/ERR_LIFETIME_EXP --- squid-5.8/errors/sv/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_LIFETIME_EXP 2023-05-01 10:41:46.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Anslutnings levnadstid tog slut

          +
          + +

          Squid har avbrutit begäran på grund av att den har överskridikt den tillåtna livstiden för en anslutning.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_NO_RELAY squid-5.9/errors/sv/ERR_NO_RELAY --- squid-5.8/errors/sv/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_NO_RELAY 2023-05-01 10:41:46.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Igen Wais Relay

          +
          + +

          There is no WAIS Relay host defined for this Cache! Yell at the administrator.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/sv/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/sv/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:41:47.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Senaste dokumentet återfanns inte i cachen och only-if-cached direktivet är satt.

          +
          + +

          Du har begärt ett dokument med only-if-cached cache kontroll direktivet. Dokumentet återfanns inte i cache databasen, eller det krävs en uppdatering av cache databasen, men förhindras av only-if-cached direktivet.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/error-details.txt squid-5.9/errors/sv/error-details.txt --- squid-5.8/errors/sv/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/error-details.txt 2023-05-01 10:41:49.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/sv/ERR_PRECONDITION_FAILED squid-5.9/errors/sv/ERR_PRECONDITION_FAILED --- squid-5.8/errors/sv/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_PRECONDITION_FAILED 2023-05-01 10:41:47.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av 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-5.8/errors/sv/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/sv/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/sv/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:41:47.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_READ_ERROR squid-5.9/errors/sv/ERR_READ_ERROR --- squid-5.8/errors/sv/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_READ_ERROR 2023-05-01 10:41:47.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Läsfel

          +
          + +

          Systemet returnerade: %E

          + +

          An error condition occurred while reading data from the network. Please retry your request.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_READ_TIMEOUT squid-5.9/errors/sv/ERR_READ_TIMEOUT --- squid-5.8/errors/sv/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_READ_TIMEOUT 2023-05-01 10:41:47.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Läsningen fick en timeout

          +
          + +

          Systemet returnerade: %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.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/sv/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/sv/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:41:47.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Misslyckades med att öppna en säker anslutning till %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          Denna proxy server och kontaktad server misslyckades med att förhandla fram en accepterbar säkerhetsinställning för hanteringen av din begäran. Det är möjligt att kontaktad server inte stödjer säkra anslutningar, eller att proxy servern inte r nöjd med de säkerhets alternativ eller certifikat som presenterades av servern.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_SHUTTING_DOWN squid-5.9/errors/sv/ERR_SHUTTING_DOWN --- squid-5.8/errors/sv/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_SHUTTING_DOWN 2023-05-01 10:41:48.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av 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.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_SOCKET_FAILURE squid-5.9/errors/sv/ERR_SOCKET_FAILURE --- squid-5.8/errors/sv/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_SOCKET_FAILURE 2023-05-01 10:41:48.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Socket Fel

          +
          + +

          Systemet returnerade: %E

          + +

          Squid kan inte skapa en TCP socket, gissningsvis på grund av tung last. Vänligen försök igen.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_TOO_BIG squid-5.9/errors/sv/ERR_TOO_BIG --- squid-5.8/errors/sv/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_TOO_BIG 2023-05-01 10:41:48.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Begäran är för stor.

          +
          + +

          Ifall du utför en POST eller PUT begäran, så är begäran du försöker ladda upp för stor.

          +

          Ifall du utförde en GET begäran, så är svaret du försöker ladda ned för stort.

          +

          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.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_UNSUP_HTTPVERSION squid-5.9/errors/sv/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/sv/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_UNSUP_HTTPVERSION 2023-05-01 10:41:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Icke stödd HTTP version

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Icke stödd HTTP version

          +
          + +

          Denna Squid accepterar inte den HTTP version du försöker använda.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_UNSUP_REQ squid-5.9/errors/sv/ERR_UNSUP_REQ --- squid-5.8/errors/sv/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_UNSUP_REQ 2023-05-01 10:41:48.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Ej stöd för begärd Metod och Protokoll

          +
          + +

          Squid stödjer inte alla frågemetoder för alla protokoll. Till exempel, Ni kan inte POST'a en Gopher förfrågan.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_URN_RESOLVE squid-5.9/errors/sv/ERR_URN_RESOLVE --- squid-5.8/errors/sv/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_URN_RESOLVE 2023-05-01 10:41:49.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          FEL

          +

          En URL för begärd URN kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URN: %U

          + +
          +

          Kan inte lösa upp URN namnet

          +
          + +

          Men hallå, förvänta dig inte för mycket från en URNs på %T :)

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_WRITE_ERROR squid-5.9/errors/sv/ERR_WRITE_ERROR --- squid-5.8/errors/sv/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_WRITE_ERROR 2023-05-01 10:41:49.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Skriv Fel

          +
          + +

          Systemet returnerade: %E

          + +

          An error condition occurred while writing to the network. Please retry your request.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/sv/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/sv/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/sv/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/sv/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:41:49.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +FEL: Begärd URL kunde inte hämtas + + +
          +

          FEL

          +

          Den begärda URL:en kunde inte hämtas

          +
          +
          + +
          +

          Följande fel påträffades vid hämtning av URL: %U

          + +
          +

          Storleken på svaret var lika med noll

          +
          + +

          Squid tog inte emot något data för denna förfrågan.

          + +

          Din cacheserver administratör är %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_ACCESS_DENIED squid-5.9/errors/th/ERR_ACCESS_DENIED --- squid-5.8/errors/th/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_ACCESS_DENIED 2023-05-01 10:41:49.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู 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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/th/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/th/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:41:49.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู 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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_AGENT_CONFIGURE squid-5.9/errors/th/ERR_AGENT_CONFIGURE --- squid-5.8/errors/th/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_AGENT_CONFIGURE 2023-05-01 10:41:49.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +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.
          • +
          +
          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_AGENT_WPAD squid-5.9/errors/th/ERR_AGENT_WPAD --- squid-5.8/errors/th/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_AGENT_WPAD 2023-05-01 10:41:50.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +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
          • +
          +
          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/th/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/th/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:41:50.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: การเรียกใช้ระบบแคชไม่ได้รับอนุญาต + + +
          +

          ERROR

          +

          การเรียกใช้ระบบแคชไม่ได้รับอนุญาต

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          การเรียกใช้ระบบแคชไม่ได้รับอนุญาต

          +
          + +

          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-5.8/errors/th/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/th/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/th/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:41:50.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: การเรียกใช้ระบบจัดการแคชไม่ได้รับอนุญาต + + +
          +

          ERROR

          +

          การเรียกใช้ระบบจัดการแคชไม่ได้รับอนุญาต

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          การเรียกใช้ระบบจัดการแคชไม่ได้รับอนุญาต

          +
          + +

          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-5.8/errors/th/ERR_CANNOT_FORWARD squid-5.9/errors/th/ERR_CANNOT_FORWARD --- squid-5.8/errors/th/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_CANNOT_FORWARD 2023-05-01 10:41:50.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          ในขณะนี้ไม่สามารถส่งต่อ (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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_CONFLICT_HOST squid-5.9/errors/th/ERR_CONFLICT_HOST --- squid-5.8/errors/th/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_CONFLICT_HOST 2023-05-01 10:41:50.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู 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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_CONNECT_FAIL squid-5.9/errors/th/ERR_CONNECT_FAIL --- squid-5.8/errors/th/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_CONNECT_FAIL 2023-05-01 10:41:50.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          การเชื่อมต่อไปยัง %I ไม่สำเร็จ

          +
          + +

          ระบบส่งค่าคืนดังนี้: %E

          + +

          The remote host or network may be down. Please try the request again.

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_DIR_LISTING squid-5.9/errors/th/ERR_DIR_LISTING --- squid-5.8/errors/th/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_DIR_LISTING 2023-05-01 10:41:51.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_DNS_FAIL squid-5.9/errors/th/ERR_DNS_FAIL --- squid-5.8/errors/th/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_DNS_FAIL 2023-05-01 10:41:51.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          ไม่สามารถระบุที่อยู่ไอพีจากชื่อเครื่อง %H

          +
          + +

          เครื่องบริการ 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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_ESI squid-5.9/errors/th/ERR_ESI --- squid-5.8/errors/th/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_ESI 2023-05-01 10:41:51.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          การประมวลผล ESI ไม่สำเร็จ

          +
          + +

          หน่วยประมวลผล ESI ส่งค่ากลับมาดังนี้:

          +
          +
          %Z
          +
          + +

          This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

          + +

          ผู้ดูแลเว็บของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_FORWARDING_DENIED squid-5.9/errors/th/ERR_FORWARDING_DENIED --- squid-5.8/errors/th/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_FORWARDING_DENIED 2023-05-01 10:41:51.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          การส่งต่อ (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

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_FTP_DISABLED squid-5.9/errors/th/ERR_FTP_DISABLED --- squid-5.8/errors/th/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_FTP_DISABLED 2023-05-01 10:41:51.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          ไม่ได้เปิดให้เรียกใช้ FTP

          +
          + +

          ระบบแคชนี้ไม่รองรับ FTP

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_FTP_FAILURE squid-5.9/errors/th/ERR_FTP_FAILURE --- squid-5.8/errors/th/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_FTP_FAILURE 2023-05-01 10:41:52.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          An FTP protocol error occurred while trying to retrieve the URL: %U

          + +

          squid ได้ส่งคำสั่ง FTP ดังต่อไปนี้:

          +
          +
          %f
          +
          + +

          เครื่องให้บริการ (server) ตอบกลับดังนี้:

          +
          +
          %F
          +
          %g
          +
          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_FTP_FORBIDDEN squid-5.9/errors/th/ERR_FTP_FORBIDDEN --- squid-5.8/errors/th/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_FTP_FORBIDDEN 2023-05-01 10:41:52.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          An FTP authentication failure occurred while trying to retrieve the URL: %U

          + +

          squid ได้ส่งคำสั่ง FTP ดังต่อไปนี้:

          +
          +
          %f
          +
          + +

          เครื่องให้บริการ (server) ตอบกลับดังนี้:

          +
          +
          %F
          +
          %g
          +
          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_FTP_NOT_FOUND squid-5.9/errors/th/ERR_FTP_NOT_FOUND --- squid-5.8/errors/th/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_FTP_NOT_FOUND 2023-05-01 10:41:52.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          ไม่สามารถเรียกดู URL ต่อไปนี้ได้: %U

          + +

          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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_FTP_PUT_CREATED squid-5.9/errors/th/ERR_FTP_PUT_CREATED --- squid-5.8/errors/th/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_FTP_PUT_CREATED 2023-05-01 10:41:52.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          ปฏิบัติการเสร็จสมบูรณ์

          +

          ไฟล์ใหม่ถูกสร้างขึ้น

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_FTP_PUT_ERROR squid-5.9/errors/th/ERR_FTP_PUT_ERROR --- squid-5.8/errors/th/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_FTP_PUT_ERROR 2023-05-01 10:41:52.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: ส่งไฟล์ขึ้น FTP ไม่สำเร็จ + + +
          +

          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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_FTP_PUT_MODIFIED squid-5.9/errors/th/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/th/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_FTP_PUT_MODIFIED 2023-05-01 10:41:52.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          ปฏิบัติการเสร็จสมบูรณ์

          +

          ไฟล์ถูกแทนที่ด้วยไฟล์ใหม่

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_FTP_UNAVAILABLE squid-5.9/errors/th/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/th/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_FTP_UNAVAILABLE 2023-05-01 10:41:53.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          เครื่องบริการ FTP ไม่ว่างพอที่จะตอบสนองหรือเรียกดู URL: %U

          + +

          squid ได้ส่งคำสั่ง FTP ดังต่อไปนี้:

          + +
          +
          %f
          +
          + +

          เครื่องให้บริการ (server) ตอบกลับดังนี้:

          +
          +
          %F
          +
          %g
          +
          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_GATEWAY_FAILURE squid-5.9/errors/th/ERR_GATEWAY_FAILURE --- squid-5.8/errors/th/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_GATEWAY_FAILURE 2023-05-01 10:41:53.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู 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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_ICAP_FAILURE squid-5.9/errors/th/ERR_ICAP_FAILURE --- squid-5.8/errors/th/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_ICAP_FAILURE 2023-05-01 10:41:53.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          เกิดความผิดพลาดในโปรโตคอล ICAP

          +
          + +

          ระบบส่งค่าคืนดังนี้: %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.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_INVALID_REQ squid-5.9/errors/th/ERR_INVALID_REQ --- squid-5.8/errors/th/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_INVALID_REQ 2023-05-01 10:41:53.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          Invalid Request error was encountered while trying to process the request:

          + +
          +
          %R
          +
          + +

          ปัญหาที่เป็นไปได้อาจจะเป็น:

          +
            +
          • ไม่ได้ระบุวิธีการหรือคำสั่ง หรือ ไม่รู้จักวิธีการหรือคำสั่งที่เรียกมา (request method)

          • +
          • ไม่ได้ระบุ URL

          • +
          • ไม่ได้ระบุชื่อตัวแแปร (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

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_INVALID_RESP squid-5.9/errors/th/ERR_INVALID_RESP --- squid-5.8/errors/th/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_INVALID_RESP 2023-05-01 10:41:53.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_INVALID_URL squid-5.9/errors/th/ERR_INVALID_URL --- squid-5.8/errors/th/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_INVALID_URL 2023-05-01 10:41:54.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          URL ผิดรูปแบบ (invalid)

          +
          + +

          URL ที่ร้องขอ มีลักษณะบางอย่างไม่ถูกต้อง

          + +

          ปัญหาที่เป็นไปได้อาจจะเป็น:

          +
            +
          • ไม่ได้ระบุโปรโตคอล หรือ โปรโตคอลที่เรียกใช้ไม่ถูกต้อง (รูปแบบที่ถูกต้อง ควรจะเป็นในลักษณะ http:// เป็นต้น)

          • +
          • ไม่ได้ระบุชื่อเครื่อง

          • +
          • Illegal double-escape in the URL-Path

          • +
          • Illegal character in hostname; underscores are not allowed.

          • +
          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_LIFETIME_EXP squid-5.9/errors/th/ERR_LIFETIME_EXP --- squid-5.8/errors/th/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_LIFETIME_EXP 2023-05-01 10:41:54.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          Connection Lifetime Expired

          +
          + +

          Squid has terminated the request because it has exceeded the maximum connection lifetime.

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_NO_RELAY squid-5.9/errors/th/ERR_NO_RELAY --- squid-5.8/errors/th/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_NO_RELAY 2023-05-01 10:41:54.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          No Wais Relay

          +
          + +

          There is no WAIS Relay host defined for this Cache! Yell at the administrator.

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/th/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/th/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:41:54.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู 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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/error-details.txt squid-5.9/errors/th/error-details.txt --- squid-5.8/errors/th/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/error-details.txt 2023-05-01 10:41:56.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/th/ERR_PRECONDITION_FAILED squid-5.9/errors/th/ERR_PRECONDITION_FAILED --- squid-5.8/errors/th/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_PRECONDITION_FAILED 2023-05-01 10:41:54.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู 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-5.8/errors/th/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/th/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/th/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:41:54.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_READ_ERROR squid-5.9/errors/th/ERR_READ_ERROR --- squid-5.8/errors/th/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_READ_ERROR 2023-05-01 10:41:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          เกิดความผิดพลาดในการรับข้อมูล

          +
          + +

          ระบบส่งค่าคืนดังนี้: %E

          + +

          An error condition occurred while reading data from the network. Please retry your request.

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_READ_TIMEOUT squid-5.9/errors/th/ERR_READ_TIMEOUT --- squid-5.8/errors/th/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_READ_TIMEOUT 2023-05-01 10:41:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          การรอรับข้อมูลเกินเวลาที่กำหนด

          +
          + +

          ระบบส่งค่าคืนดังนี้: %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.

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/th/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/th/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:41:55.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          สร้างการเชื่อมต่อนิรภัย (secure connection) ไปยัง %I ไม่สำเร็จ

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_SHUTTING_DOWN squid-5.9/errors/th/ERR_SHUTTING_DOWN --- squid-5.8/errors/th/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_SHUTTING_DOWN 2023-05-01 10:41:55.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู 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.

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_SOCKET_FAILURE squid-5.9/errors/th/ERR_SOCKET_FAILURE --- squid-5.8/errors/th/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_SOCKET_FAILURE 2023-05-01 10:41:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          เกิดการล้มเหลวใน socket

          +
          + +

          ระบบส่งค่าคืนดังนี้: %E

          + +

          Squid is unable to create a TCP socket, presumably due to excessive load. Please retry your request.

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_TOO_BIG squid-5.9/errors/th/ERR_TOO_BIG --- squid-5.8/errors/th/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_TOO_BIG 2023-05-01 10:41:55.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          คำร้องขอหรือคำตอบกลับมีขนาดใหญ่เกินไป

          +
          + +

          ถ้าคุณกำลังสั่ง 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

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_UNSUP_HTTPVERSION squid-5.9/errors/th/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/th/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_UNSUP_HTTPVERSION 2023-05-01 10:41:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่รองรับ HTTP รุ่นนี้

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          ไม่รองรับ HTTP รุ่นนี้

          +
          + +

          squid ไม่รับ HTTP รุ่นที่คุณพยายามเรียกใช้อยู่นี้

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_UNSUP_REQ squid-5.9/errors/th/ERR_UNSUP_REQ --- squid-5.8/errors/th/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_UNSUP_REQ 2023-05-01 10:41:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          ไม่รองรับโปรโตคอลและวิธีการหรือคำสั่งที่เรียกมา (request method)

          +
          + +

          Squid does not support all request methods for all access protocols. For example, you can not POST a Gopher request.

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_URN_RESOLVE squid-5.9/errors/th/ERR_URN_RESOLVE --- squid-5.8/errors/th/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_URN_RESOLVE 2023-05-01 10:41:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL สำหรับ URN ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URN: %U

          + +
          +

          Cannot Resolve URN

          +
          + +

          เฮ้, อย่าคาดหวังจาก URN บน %T มากเกินไปนัก :)

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_WRITE_ERROR squid-5.9/errors/th/ERR_WRITE_ERROR --- squid-5.8/errors/th/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_WRITE_ERROR 2023-05-01 10:41:56.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          เกิดความผิดพลาดในการส่งข้อมูล

          +
          + +

          ระบบส่งค่าคืนดังนี้: %E

          + +

          An error condition occurred while writing to the network. Please retry your request.

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/th/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/th/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/th/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/th/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:41:56.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ + + +
          +

          ERROR

          +

          ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ

          +
          +
          + +
          +

          พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

          + +
          +

          สิ่งที่ตอบกลับมา ว่างเปล่า

          +
          + +

          Squid did not receive any data for this request.

          + +

          ผู้ดูแลระบบแคชของคุณคือ %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_ACCESS_DENIED squid-5.9/errors/tr/ERR_ACCESS_DENIED --- squid-5.8/errors/tr/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_ACCESS_DENIED 2023-05-01 10:41:57.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Erişim Yasak.

          +
          + +

          Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/tr/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/tr/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:41:57.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          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-5.8/errors/tr/ERR_AGENT_CONFIGURE squid-5.9/errors/tr/ERR_AGENT_CONFIGURE --- squid-5.8/errors/tr/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_AGENT_CONFIGURE 2023-05-01 10:41:57.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          HATA

          +

          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.
          • +
          +
          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_AGENT_WPAD squid-5.9/errors/tr/ERR_AGENT_WPAD --- squid-5.8/errors/tr/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_AGENT_WPAD 2023-05-01 10:41:57.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          HATA

          +

          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
          • +
          +
          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/tr/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/tr/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:41:57.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +HATA: Cache Sunucusu Kullanamazsınız + + +
          +

          HATA

          +

          Cache Sunucusunu Kullanamazsınız.

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Cache Sunucusunu Kullanamazsınız.

          +
          + +

          Özür dilerim, istediğiniz %U adresine bu Cache Sunucusunu kullanarak ulaşamazsınız.

          + +

          Please contact the cache administrator if you have difficulties authenticating yourself.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/tr/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/tr/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:41:57.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +HATA: Cache Yönetici girişi yasak + + +
          +

          HATA

          +

          Cache Yönetici girişi yasak.

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Cache Yönetici girişi yasak.

          +
          + +

          Özür dilerim, istediğiniz %U adresine bu cache yönetici girişinden bağlanamazsınız.

          + +

          Eğer sorun devam ediyor ise lütfen cache yöneticisi ile bağlantıya geçin Eğer yönetici siz iseniz Squid Yardım Sayfalarında Cache Yöneticisi giriş arayüzü ile ilgili kısımları tekrar okuyun ve Cache sunucusunun hata mesajlarını kontrol edin.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_CANNOT_FORWARD squid-5.9/errors/tr/ERR_CANNOT_FORWARD --- squid-5.8/errors/tr/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_CANNOT_FORWARD 2023-05-01 10:41:58.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Şu anda sizi yönlendiremem.

          +
          + +

          This request could not be forwarded to the origin server or to any parent caches.

          + +

          Buna sebep aşağidakilerden herhangi biri olabilir:

          +
            +
          • 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.
          • +
          + +

          Önbellk yöneticiniz %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_CONFLICT_HOST squid-5.9/errors/tr/ERR_CONFLICT_HOST --- squid-5.8/errors/tr/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_CONFLICT_HOST 2023-05-01 10:41:58.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %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.

          + +

          Buna sebep aşağidakilerden herhangi biri olabilir:

          +
            +
          • 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.
          • +
          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_CONNECT_FAIL squid-5.9/errors/tr/ERR_CONNECT_FAIL --- squid-5.8/errors/tr/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_CONNECT_FAIL 2023-05-01 10:41:58.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          %I 'a bağlantı başarısız.

          +
          + +

          Sistemden gelen mesaj: %E

          + +

          The remote host or network may be down. Please try the request again.

          + +

          Önbellk yöneticiniz %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_DIR_LISTING squid-5.9/errors/tr/ERR_DIR_LISTING --- squid-5.8/errors/tr/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_DIR_LISTING 2023-05-01 10:41:58.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Dizin: %U + + +
          +

          Dizin: %U/

          +
          +
          + +
          +

          Dizin İçeriği

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Kaynak Dizin (Kök Dizin)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_DNS_FAIL squid-5.9/errors/tr/ERR_DNS_FAIL --- squid-5.8/errors/tr/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_DNS_FAIL 2023-05-01 10:41:58.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          %H isimli sunucuya ait herhangi bir IP adresi bulunamadı.

          +
          + +

          DNS sunucusundan gelen cevap:

          +
          +
          %z
          +
          + +

          This means that the cache was not able to resolve the hostname presented in the URL. Check if the address is correct.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_ESI squid-5.9/errors/tr/ERR_ESI --- squid-5.8/errors/tr/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_ESI 2023-05-01 10:41:59.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          ESI İşleminde hata.

          +
          + +

          ESI işlemi geri döndü:

          +
          +
          %Z
          +
          + +

          This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

          + +

          Senin webmaster'ın %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_FORWARDING_DENIED squid-5.9/errors/tr/ERR_FORWARDING_DENIED --- squid-5.8/errors/tr/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_FORWARDING_DENIED 2023-05-01 10:41:59.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Yönlendirme yasak.

          +
          + +

          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.

          + +

          Önbellk yöneticiniz %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_FTP_DISABLED squid-5.9/errors/tr/ERR_FTP_DISABLED --- squid-5.8/errors/tr/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_FTP_DISABLED 2023-05-01 10:41:59.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          FTP şu anda kapalı.

          +
          + +

          Bu cache sunucu FTP desteklemiyor.

          + +

          Önbellk yöneticiniz %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_FTP_FAILURE squid-5.9/errors/tr/ERR_FTP_FAILURE --- squid-5.8/errors/tr/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_FTP_FAILURE 2023-05-01 10:41:59.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL: %U adresine erişilirken bir iletişim hatası meydana geldi

          + +

          Squid, şu FTP komutlarını gönderdi:

          +
          +
          %f
          +
          + +

          Sunucu cevabı:

          +
          +
          %F
          +
          %g
          +
          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_FTP_FORBIDDEN squid-5.9/errors/tr/ERR_FTP_FORBIDDEN --- squid-5.8/errors/tr/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_FTP_FORBIDDEN 2023-05-01 10:41:59.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL: %U adresine erişilirken bir FTP onay hatası meydana geldi.

          + +

          Squid, şu FTP komutlarını gönderdi:

          +
          +
          %f
          +
          + +

          Sunucu cevabı:

          +
          +
          %F
          +
          %g
          +
          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_FTP_NOT_FOUND squid-5.9/errors/tr/ERR_FTP_NOT_FOUND --- squid-5.8/errors/tr/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_FTP_NOT_FOUND 2023-05-01 10:41:59.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilemiyor: %U

          + +

          Squid, şu FTP komutlarını gönderdi:

          +
          +
          %f
          +
          + +

          Sunucu cevabı:

          +
          +
          %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.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_FTP_PUT_CREATED squid-5.9/errors/tr/ERR_FTP_PUT_CREATED --- squid-5.8/errors/tr/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_FTP_PUT_CREATED 2023-05-01 10:42:00.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          İşlem başarıyla tamamlandı

          +

          Dosya güncellendi.

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_FTP_PUT_ERROR squid-5.9/errors/tr/ERR_FTP_PUT_ERROR --- squid-5.8/errors/tr/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_FTP_PUT_ERROR 2023-05-01 10:42:00.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +HATA: FTP dosya yüklemesi yapılamadı + + +
          +

          HATA

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          URL: %U adresine erişilirken bir iletişim hatası meydana geldi

          + +

          Squid, şu FTP komutlarını gönderdi:

          +
          +
          %f
          +
          + +

          Sunucu cevabı:

          +
          +
          %F
          +
          + +

          FTP sunucusunun dosya saklamak için izni olmayabilir. Paketi,izinleri ve disk alanını kontrol edin ve tekrar deneyin.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_FTP_PUT_MODIFIED squid-5.9/errors/tr/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/tr/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_FTP_PUT_MODIFIED 2023-05-01 10:42:00.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          İşlem başarıyla tamamlandı

          +

          Dosya güncellendi.

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_FTP_UNAVAILABLE squid-5.9/errors/tr/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/tr/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_FTP_UNAVAILABLE 2023-05-01 10:42:00.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          Erişmek istediğiniz URL: %U FTP sunucusu çok meşgul.

          + +

          Squid, şu FTP komutlarını gönderdi:

          + +
          +
          %f
          +
          + +

          Sunucu cevabı:

          +
          +
          %F
          +
          %g
          +
          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_GATEWAY_FAILURE squid-5.9/errors/tr/ERR_GATEWAY_FAILURE --- squid-5.8/errors/tr/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_GATEWAY_FAILURE 2023-05-01 10:42:00.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %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.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_ICAP_FAILURE squid-5.9/errors/tr/ERR_ICAP_FAILURE --- squid-5.8/errors/tr/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_ICAP_FAILURE 2023-05-01 10:42:00.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          ICAP iletişim hatası.

          +
          + +

          Sistemden gelen mesaj: %E

          + +

          This means that some aspect of the ICAP communication failed.

          + +

          Buna sebep aşağidakilerden herhangi biri olabilir:

          +
            +
          • ICAP sunucusu erişilemez.

          • +
          • ICAP sunucusundan yasadışı bir yanıt alınmıştır.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_INVALID_REQ squid-5.9/errors/tr/ERR_INVALID_REQ --- squid-5.8/errors/tr/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_INVALID_REQ 2023-05-01 10:42:01.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          Geçersiz İstek İşlem sırasında bir hata ile karşılaşıldı:

          + +
          +
          %R
          +
          + +

          Buna sebep aşağidakilerden herhangi biri olabilir:

          +
            +
          • Eksik veya bilinmeyen metod (GET, POST).

          • +
          • Eksik URL.

          • +
          • Eksik HTTP Belirleyici (HTTP/1.0).

          • +
          • İstenilen dosya çok büyük.

          • +
          • Content-Length, POST veya PUT istekleri için eksik.

          • +
          • Adreste yanlış karakterler (alt çizgi, vs. kullanılamaz).

          • +
          • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

          • +
          + +

          Önbellk yöneticiniz %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_INVALID_RESP squid-5.9/errors/tr/ERR_INVALID_RESP --- squid-5.8/errors/tr/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_INVALID_RESP 2023-05-01 10:42:01.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          Geçersiz Yanıt İşlem sırasında bir hata ile karşılaşıldı:

          + +
          +
          %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.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_INVALID_URL squid-5.9/errors/tr/ERR_INVALID_URL --- squid-5.8/errors/tr/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_INVALID_URL 2023-05-01 10:42:01.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Yanlış URL.

          +
          + +

          Vermiş olduğunuz URL yanlış.

          + +

          Buna sebep aşağidakilerden herhangi biri olabilir:

          +
            +
          • Eksik veya yanlış protokol ismi (http:// veya benzeri olmalı).

          • +
          • Eksik adres.

          • +
          • Illegal double-escape in the URL-Path

          • +
          • Adreste yanlış karakterler (alt çizgi, vs. kullanılamaz).

          • +
          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_LIFETIME_EXP squid-5.9/errors/tr/ERR_LIFETIME_EXP --- squid-5.8/errors/tr/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_LIFETIME_EXP 2023-05-01 10:42:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Bağlantı süresi doldu.

          +
          + +

          Squid, bağlantı süresi dolduğu için isteğinizi durdurdu.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_NO_RELAY squid-5.9/errors/tr/ERR_NO_RELAY --- squid-5.8/errors/tr/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_NO_RELAY 2023-05-01 10:42:01.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          WAIS Sunucu tanımlı değil

          +
          + +

          There is no WAIS Relay host defined for this Cache! Yell at the administrator.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/tr/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/tr/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:42:02.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          İstediğiniz doğru doküman cache sunucusunda bulunamadı ve only-if-cached (sadece Cache Sunucunda bulunuyor ise) tanımlı.

          +
          + +

          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.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/error-details.txt squid-5.9/errors/tr/error-details.txt --- squid-5.8/errors/tr/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/error-details.txt 2023-05-01 10:42:04.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/tr/ERR_PRECONDITION_FAILED squid-5.9/errors/tr/ERR_PRECONDITION_FAILED --- squid-5.8/errors/tr/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_PRECONDITION_FAILED 2023-05-01 10:42:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %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-5.8/errors/tr/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/tr/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/tr/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:42:02.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_READ_ERROR squid-5.9/errors/tr/ERR_READ_ERROR --- squid-5.8/errors/tr/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_READ_ERROR 2023-05-01 10:42:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Okuma Hatası

          +
          + +

          Sistemden gelen mesaj: %E

          + +

          An error condition occurred while reading data from the network. Please retry your request.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_READ_TIMEOUT squid-5.9/errors/tr/ERR_READ_TIMEOUT --- squid-5.8/errors/tr/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_READ_TIMEOUT 2023-05-01 10:42:02.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Okuma zamanı doldu (Read Timeout)

          +
          + +

          Sistemden gelen mesaj: %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.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/tr/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/tr/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:42:02.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          %I ile güvenli bağlantı kurma başarısız

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_SHUTTING_DOWN squid-5.9/errors/tr/ERR_SHUTTING_DOWN --- squid-5.8/errors/tr/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_SHUTTING_DOWN 2023-05-01 10:42:03.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %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.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_SOCKET_FAILURE squid-5.9/errors/tr/ERR_SOCKET_FAILURE --- squid-5.8/errors/tr/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_SOCKET_FAILURE 2023-05-01 10:42:03.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Bağlantı hatası (Socket Failure).

          +
          + +

          Sistemden gelen mesaj: %E

          + +

          Squid, TCP bağlantı yaratamadı. Bunun nedeni hedef sunucunun çok fazla yüklenmiş olması olabilir. Lütfen isteğinizi tekrar giriniz.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_TOO_BIG squid-5.9/errors/tr/ERR_TOO_BIG --- squid-5.8/errors/tr/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_TOO_BIG 2023-05-01 10:42:03.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Talep veya cevap çok büyük.

          +
          + +

          Bir POST veya PUT isteği yapıyorsanız yüklemeye çalıştığınız öğe çok büyük.

          +

          Eğer GET isteği yapıyorsanız, indirmeye çalıştığınız dosya çok büyüktür.

          +

          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-5.8/errors/tr/ERR_UNSUP_HTTPVERSION squid-5.9/errors/tr/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/tr/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_UNSUP_HTTPVERSION 2023-05-01 10:42:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          Desteklenmeyen HTTP versiyonu.

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Desteklenmeyen HTTP versiyonu.

          +
          + +

          Squid kullandığınız HTTP versiyonunu kabul etmiyor.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_UNSUP_REQ squid-5.9/errors/tr/ERR_UNSUP_REQ --- squid-5.8/errors/tr/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_UNSUP_REQ 2023-05-01 10:42:03.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Desteklenmeyen istek yöntemi ve protokol.

          +
          + +

          Squid, bazı erişim protokollerin, bazı istek yöntemlerini desteklemiyor. Örneğin Gopher isteğinizde POST yapamazsınız.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_URN_RESOLVE squid-5.9/errors/tr/ERR_URN_RESOLVE --- squid-5.8/errors/tr/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_URN_RESOLVE 2023-05-01 10:42:04.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          HATA

          +

          URN'ye erişmek için bir URL alınamadı.

          +
          +
          + +
          +

          URN: %U erişilirken bir hata ile karşılaşıldı.

          + +
          +

          URN çözülemedi.

          +
          + +

          %T de URN den fazla birsey beklemeyin. :)

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_WRITE_ERROR squid-5.9/errors/tr/ERR_WRITE_ERROR --- squid-5.8/errors/tr/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_WRITE_ERROR 2023-05-01 10:42:04.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Yazma Hatası

          +
          + +

          Sistemden gelen mesaj: %E

          + +

          An error condition occurred while writing to the network. Please retry your request.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/tr/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/tr/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/tr/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/tr/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:42:04.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +HATA: İstenilen URL'e ulaşılamadı + + +
          +

          HATA

          +

          İstenilen URL'e ulaşılamadı

          +
          +
          + +
          +

          URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

          + +
          +

          Sıfır Uzunlukta cevap

          +
          + +

          Squid, isteğiniz ile ilgili herhangi bir bilgi alamadı.

          + +

          Önbellk yöneticiniz %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_ACCESS_DENIED squid-5.9/errors/uk/ERR_ACCESS_DENIED --- squid-5.8/errors/uk/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_ACCESS_DENIED 2023-05-01 10:42:04.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Доступ заборонено

          +
          + +

          Налаштування контролю доступу забороняє обробку Вашого запиту в даний час. Будь-ласка, зв'яжіться з Вашим постачальником Інтернет послуг, якщо Ви вважаєте, що це неправильно.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/uk/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/uk/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:42:04.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні 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-5.8/errors/uk/ERR_AGENT_CONFIGURE squid-5.9/errors/uk/ERR_AGENT_CONFIGURE --- squid-5.8/errors/uk/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_AGENT_CONFIGURE 2023-05-01 10:42:04.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Конфігурація браузера + + +
          +

          ПОМИЛКА

          +

          Конфігурація браузера

          +
          +
          + +
          +
          +

          Конфігурація Вашого браузера потребує коригувань для використання цієї мережі.

          +
          + +

          Як знайти ці налаштування у Вашому браузері:

          + +
          +For Firefox browsers go to: +
            +
          • Інструменти -> Опції -> Додатково -> Мережа -> Параметри з'єднання
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Інструменти -> Властивості браузера -> З'єднання -> Налаштування LAN -> Проксі
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Інструменти -> Налаштування -> Додатково -> Мережа -> Проксі сервера
          • +
          • In the HTTP proxy box type the proxy name %h and port %b.
          • +
          +
          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_AGENT_WPAD squid-5.9/errors/uk/ERR_AGENT_WPAD --- squid-5.8/errors/uk/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_AGENT_WPAD 2023-05-01 10:42:05.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Конфігурація браузера + + +
          +

          ПОМИЛКА

          +

          Конфігурація браузера

          +
          +
          + +
          +
          +

          Конфігурація Вашого браузера потребує коригувань для використання цієї мережі.

          +
          + +

          Як знайти ці налаштування у Вашому браузері:

          + +
          +For Firefox browsers go to: +
            +
          • Інструменти -> Опції -> Додатково -> Мережа -> Параметри з'єднання
          • +
          • Select Auto-detect proxy settings for this network
          • +
          +
          + +
          +For Internet Explorer browsers go to: +
            +
          • Інструменти -> Властивості браузера -> З'єднання -> Налаштування LAN -> Проксі
          • +
          • Виберіть "Автоматичне визначення параметрів"
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Інструменти -> Налаштування -> Додатково -> Мережа -> Проксі сервера
          • +
          • Виберіть " Автоматичне налаштування проксі"
          • +
          +
          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/uk/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/uk/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:42:05.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ПОМИЛКА: Доступ до кешу заборонено + + +
          +

          ПОМИЛКА

          +

          Доступ до кешу заборонено

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Доступ до кешу заборонено

          +
          + +

          Вибачте, Вам зараз не дозволено запитувати %U з цього кешу. Спочатку авторизуйтеся.

          + +

          Please contact the cache administrator if you have difficulties authenticating yourself.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/uk/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/uk/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:42:05.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ПОМИЛКА: Доступ до керування кешом заборонено + + +
          +

          ПОМИЛКА

          +

          Доступ до керування кешом заборонено

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Доступ до керування кешом заборонено

          +
          + +

          Вибачте, Вам зараз не дозволено запитувати %U з цього менеджера кешу. Спочатку авторизуйтеся.

          + +

          Будь-ласка, зв'яжіться з Адміністратором кешу, якщо у Вас виникли труднощі з авторизацією, якщо Ви Адміністратор, читайте документацію стосовно інтерфейсу керування кешом. А також для отримання більш детальної інформації про помилки перегляньте лог-файл кешу.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_CANNOT_FORWARD squid-5.9/errors/uk/ERR_CANNOT_FORWARD --- squid-5.8/errors/uk/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_CANNOT_FORWARD 2023-05-01 10:42:05.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          В даний момент неможливо переслати даний запит

          +
          + +

          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.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_CONFLICT_HOST squid-5.9/errors/uk/ERR_CONFLICT_HOST --- squid-5.8/errors/uk/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_CONFLICT_HOST 2023-05-01 10:42:05.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні 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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_CONNECT_FAIL squid-5.9/errors/uk/ERR_CONNECT_FAIL --- squid-5.8/errors/uk/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_CONNECT_FAIL 2023-05-01 10:42:06.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          З'єднання з %I втрачено

          +
          + +

          Система повідомляє: %E

          + +

          Віддалений вузел чи мережа можливо недоступні. Будь-ласка, повторіть запит.

          + +

          Адміністратор даного кешу %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_DIR_LISTING squid-5.9/errors/uk/ERR_DIR_LISTING --- squid-5.8/errors/uk/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_DIR_LISTING 2023-05-01 10:42:06.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Директорія: %U + + +
          +

          Директорія: %U/

          +
          +
          + +
          +

          Вміст директорії:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Попередня директорія (Коренева директорія)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_DNS_FAIL squid-5.9/errors/uk/ERR_DNS_FAIL --- squid-5.8/errors/uk/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_DNS_FAIL 2023-05-01 10:42:06.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Неможливо визначити IP адресу вузла: %H

          +
          + +

          DNS сервер повідомляє:

          +
          +
          %z
          +
          + +

          Це означає, що кеш не зміг перетворити ім'я вузла в URL. Перевірте правильність написання адреси.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_ESI squid-5.9/errors/uk/ERR_ESI --- squid-5.8/errors/uk/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_ESI 2023-05-01 10:42:06.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Збій опрацювання ESI інструкції

          +
          + +

          ESI обробник повідомляє:

          +
          +
          %Z
          +
          + +

          Це означає, що обробник не зміг опрацювати ESI шаблон. Будь-ласка, повідомте про цю помилку Вебмайстра.

          + +

          Вебмайстер %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_FORWARDING_DENIED squid-5.9/errors/uk/ERR_FORWARDING_DENIED --- squid-5.8/errors/uk/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_FORWARDING_DENIED 2023-05-01 10:42:06.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Пересилку заборонено

          +
          + +

          Цей кеш не перешле Ваш запит, через намагання встановити родинні відносини. Скоріш за все клієнт %i - невірно сконфігурований кеш.

          + +

          Адміністратор даного кешу %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_FTP_DISABLED squid-5.9/errors/uk/ERR_FTP_DISABLED --- squid-5.8/errors/uk/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_FTP_DISABLED 2023-05-01 10:42:06.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          FTP відключено

          +
          + +

          FTP відключено

          + +

          Адміністратор даного кешу %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_FTP_FAILURE squid-5.9/errors/uk/ERR_FTP_FAILURE --- squid-5.8/errors/uk/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_FTP_FAILURE 2023-05-01 10:42:07.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка протоколу FTP.

          + +

          Squid надіслав наступну FTP команду:

          +
          +
          %f
          +
          + +

          Сервер відповів наступне:

          +
          +
          %F
          +
          %g
          +
          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_FTP_FORBIDDEN squid-5.9/errors/uk/ERR_FTP_FORBIDDEN --- squid-5.8/errors/uk/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_FTP_FORBIDDEN 2023-05-01 10:42:07.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U відбулася невдала FTP авторизація.

          + +

          Squid надіслав наступну FTP команду:

          +
          +
          %f
          +
          + +

          Сервер відповів наступне:

          +
          +
          %F
          +
          %g
          +
          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_FTP_NOT_FOUND squid-5.9/errors/uk/ERR_FTP_NOT_FOUND --- squid-5.8/errors/uk/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_FTP_NOT_FOUND 2023-05-01 10:42:07.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          Наступний URL: %U не може бути отриманий.

          + +

          Squid надіслав наступну FTP команду:

          +
          +
          %f
          +
          + +

          Сервер відповів наступне:

          +
          +
          %F
          +
          %g
          +
          + +

          Це може бути викликано FTP адресою з абсолютним шляхом (що не відповідає стандарту RFC 1738). В такому випадку, файл може бути знайдений за адресою %B.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_FTP_PUT_CREATED squid-5.9/errors/uk/ERR_FTP_PUT_CREATED --- squid-5.8/errors/uk/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_FTP_PUT_CREATED 2023-05-01 10:42:07.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Операцію успішно виконано

          +

          Файл створено

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_FTP_PUT_ERROR squid-5.9/errors/uk/ERR_FTP_PUT_ERROR --- squid-5.8/errors/uk/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_FTP_PUT_ERROR 2023-05-01 10:42:07.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ПОМИЛКА: Невдала пересилка по FTP + + +
          +

          ПОМИЛКА

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка протоколу FTP.

          + +

          Squid надіслав наступну FTP команду:

          +
          +
          %f
          +
          + +

          Сервер відповів наступне:

          +
          +
          %F
          +
          + +

          Можливо на FTP сервері відсутній дозвіл або простір для зберігання файлу. Перевірте шлях, дозволи, вільний простір і спробуйте знов.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_FTP_PUT_MODIFIED squid-5.9/errors/uk/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/uk/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_FTP_PUT_MODIFIED 2023-05-01 10:42:07.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Операцію успішно виконано

          +

          Файл поновлено

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_FTP_UNAVAILABLE squid-5.9/errors/uk/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/uk/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_FTP_UNAVAILABLE 2023-05-01 10:42:08.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          Сервер FTP був дуже завантажений при отриманні URL: %U.

          + +

          Squid надіслав наступну FTP команду:

          + +
          +
          %f
          +
          + +

          Сервер відповів наступне:

          +
          +
          %F
          +
          %g
          +
          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_GATEWAY_FAILURE squid-5.9/errors/uk/ERR_GATEWAY_FAILURE --- squid-5.8/errors/uk/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_GATEWAY_FAILURE 2023-05-01 10:42:08.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні 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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_ICAP_FAILURE squid-5.9/errors/uk/ERR_ICAP_FAILURE --- squid-5.8/errors/uk/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_ICAP_FAILURE 2023-05-01 10:42:08.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Помилка протоколу ICAP

          +
          + +

          Система повідомляє: %E

          + +

          Це означає, що деякі елементи ICAP з'єднання несправні.

          + +

          Ймовірні причини:

          +
            +
          • Сервер ICAP не досяжний;

          • +
          • Отримано некоректну відповідь від сервера ICAP.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_INVALID_REQ squid-5.9/errors/uk/ERR_INVALID_REQ --- squid-5.8/errors/uk/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_INVALID_REQ 2023-05-01 10:42:08.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          Невірний запит виник при обробці запиту:

          + +
          +
          %R
          +
          + +

          Ймовірні причини:

          +
            +
          • Відсутній або невідомий метод запиту

          • +
          • Відсутній URL

          • +
          • Відсутній HTTP ідентифікатор (HTTP/1.0)

          • +
          • Запит завеликий

          • +
          • Заголовок Content-Length відсутній для запитів POST чи PUT

          • +
          • Неприпустимий символ в імені сервера; символ підкреслення заборонено.

          • +
          • Запит з використанням заголовку Expect: протоколу HTTP/1.1 здійснено до програмного забезпечення яке підтримує протокол HTTP/1.0.

          • +
          + +

          Адміністратор даного кешу %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_INVALID_RESP squid-5.9/errors/uk/ERR_INVALID_RESP --- squid-5.8/errors/uk/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_INVALID_RESP 2023-05-01 10:42:08.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          Невірна відповідь виникла при обробці запиту:

          + +
          +
          %R
          +
          + +

          Отримана відповідь від HTTP сервера є незрозумілою або погано сформованою. Будь-ласка, зв'яжіться з оператором сайту.

          + +

          При необхідності, Адміністратор вашого кешу може забезпечити Вас більш детальною інформацією щодо ймовірних причин проблеми.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_INVALID_URL squid-5.9/errors/uk/ERR_INVALID_URL --- squid-5.8/errors/uk/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_INVALID_URL 2023-05-01 10:42:09.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Недійсний URL

          +
          + +

          Деякі елементи запитуємого URL неправильні.

          + +

          Ймовірні причини:

          +
            +
          • Протокол доступу відсутній або неправильний (повинен бути http:// або схожий)

          • +
          • Відсутнє ім'я вузла

          • +
          • Illegal double-escape in the URL-Path

          • +
          • Неприпустимий символ в імені сервера; символ підкреслення заборонено.

          • +
          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_LIFETIME_EXP squid-5.9/errors/uk/ERR_LIFETIME_EXP --- squid-5.8/errors/uk/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_LIFETIME_EXP 2023-05-01 10:42:09.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Час життя з'єднання вийшов

          +
          + +

          Squid завершив запит через перевищення максимального часу з'єднання.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_NO_RELAY squid-5.9/errors/uk/ERR_NO_RELAY --- squid-5.8/errors/uk/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_NO_RELAY 2023-05-01 10:42:09.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Не визначено WAIS Relay

          +
          + +

          Для даного кешу не визначений WAIS Relay вузел! Поскаржіться адміністратору.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/uk/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/uk/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:42:09.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Необхідний документ не знайдений в кеші і визначена директива "тільки в кеші"

          +
          + +

          Ви надіслали запит з директивою керування кешу "тільки в кеші". Документ не знайдений в кеші, або він потребує оновлення, що заборонено директивою "тільки в кеші".

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/error-details.txt squid-5.9/errors/uk/error-details.txt --- squid-5.8/errors/uk/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/error-details.txt 2023-05-01 10:42:11.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/uk/ERR_PRECONDITION_FAILED squid-5.9/errors/uk/ERR_PRECONDITION_FAILED --- squid-5.8/errors/uk/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_PRECONDITION_FAILED 2023-05-01 10:42:09.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Precondition Failed.

          +
          + +

          Це означає:

          +
          +

          At least one precondition specified by the HTTP client in the request header has failed.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/uk/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/uk/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:42:09.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_READ_ERROR squid-5.9/errors/uk/ERR_READ_ERROR --- squid-5.8/errors/uk/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_READ_ERROR 2023-05-01 10:42:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Помилка читання

          +
          + +

          Система повідомляє: %E

          + +

          При читанні даних з мережі сталася помилка. Будь-ласка, повторіть запит.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_READ_TIMEOUT squid-5.9/errors/uk/ERR_READ_TIMEOUT --- squid-5.8/errors/uk/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_READ_TIMEOUT 2023-05-01 10:42:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Час очікування на відповідь вийшов

          +
          + +

          Система повідомляє: %E

          + +

          Перевищено час очікування при отриманні даних з мережі. Мережа або сервер не працюють чи перенавантажені. Будь-ласка, повторіть запит.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/uk/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/uk/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:42:10.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Невдалося встановити безпечне з'єднання з %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          При обробці Вашого запиту даний кеш і віддалений вузел не змогли підібрати взаємовигідні параметри безпеки. Можливо віддалений вузел не підтримує безпечні з'єднання, або кеш не задоволений сертифікатом безпечності вузла.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_SHUTTING_DOWN squid-5.9/errors/uk/ERR_SHUTTING_DOWN --- squid-5.8/errors/uk/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_SHUTTING_DOWN 2023-05-01 10:42:10.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +

          Зараз кеш в процесі припинення роботи і не може виконати Ваш запит в даний час. Будь-ласка, повторіть запит пізніше.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_SOCKET_FAILURE squid-5.9/errors/uk/ERR_SOCKET_FAILURE --- squid-5.8/errors/uk/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_SOCKET_FAILURE 2023-05-01 10:42:10.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Помилка TCP сокету

          +
          + +

          Система повідомляє: %E

          + +

          Squid не зміг створити TCP сокет, скоріш за все через надмірне навантаження. Будь-ласка, повторіть запит.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_TOO_BIG squid-5.9/errors/uk/ERR_TOO_BIG --- squid-5.8/errors/uk/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_TOO_BIG 2023-05-01 10:42:11.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Запит або відповідь завеликі

          +
          + +

          Якщо Ви здійснюєте POST чи PUT запит, тоді інформація яку ви завантажуєте - завелика.

          +

          Якщо ви здійснюєте GET запит, тоді інформація яку ви скачуєте - завелика.

          +

          Ці ліміти встановлені Інтернет провайдером, який керує даним кешом. Будь-ласка, зв'яжіться безпосередньо з ним, якщо Ви вважаєте це помилкою.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_UNSUP_HTTPVERSION squid-5.9/errors/uk/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/uk/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_UNSUP_HTTPVERSION 2023-05-01 10:42:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Версія HTTP протоколу не підтримується

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Версія HTTP протоколу не підтримується

          +
          + +

          Squid не сприймає версію HTTP яку Ви намагаєтесь використовувати.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_UNSUP_REQ squid-5.9/errors/uk/ERR_UNSUP_REQ --- squid-5.8/errors/uk/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_UNSUP_REQ 2023-05-01 10:42:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Метод запиту чи протокол не підтримуються

          +
          + +

          Squid не підтримує всі методи запитів для всіх наявних протоколів. Як приклад, Ви не можете виконати запит POST для протоколу Gopher.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_URN_RESOLVE squid-5.9/errors/uk/ERR_URN_RESOLVE --- squid-5.8/errors/uk/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_URN_RESOLVE 2023-05-01 10:42:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          ПОМИЛКА

          +

          URL для запитуваного URN не може бути отриманий

          +
          +
          + +
          +

          При отриманні URN: %U виникла помилка.

          + +
          +

          Неможливо визначити URN

          +
          + +

          Не очікуйте надто багато від URN'ів на %T.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_WRITE_ERROR squid-5.9/errors/uk/ERR_WRITE_ERROR --- squid-5.8/errors/uk/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_WRITE_ERROR 2023-05-01 10:42:11.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Помилка запису

          +
          + +

          Система повідомляє: %E

          + +

          Під час відправлення даних в мережу виникла помилка. Будь-ласка, повторіть запит.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uk/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/uk/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/uk/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uk/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:42:11.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ПОМИЛКА: Запитаний URL не може бути отриманий + + +
          +

          ПОМИЛКА

          +

          Запитаний URL не може бути отриманий.

          +
          +
          + +
          +

          При отриманні URL: %U виникла помилка.

          + +
          +

          Відповідь нульової довжини

          +
          + +

          Squid не отримав жодних даних для цього запиту.

          + +

          Адміністратор даного кешу %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_ACCESS_DENIED squid-5.9/errors/uz/ERR_ACCESS_DENIED --- squid-5.8/errors/uz/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_ACCESS_DENIED 2023-05-01 10:42:12.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Рухсат берилмаган.

          +
          + +

          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-5.8/errors/uz/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/uz/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/uz/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:42:12.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          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-5.8/errors/uz/ERR_AGENT_CONFIGURE squid-5.9/errors/uz/ERR_AGENT_CONFIGURE --- squid-5.8/errors/uz/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_AGENT_CONFIGURE 2023-05-01 10:42:12.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          ХАТО

          +

          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-5.8/errors/uz/ERR_AGENT_WPAD squid-5.9/errors/uz/ERR_AGENT_WPAD --- squid-5.8/errors/uz/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_AGENT_WPAD 2023-05-01 10:42:12.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          ХАТО

          +

          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-5.8/errors/uz/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/uz/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/uz/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:42:12.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ХАТО: Кеш рухсат бермади + + +
          +

          ХАТО

          +

          Cache Access Denied.

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Cache Access Denied.

          +
          + +

          Кечирасиз, сизнинг %U сўровингизга ушбу кеш томонидан тасдиқдан ўтмагунингизча рухсат берилмайди.

          + +

          Please contact the cache administrator if you have difficulties authenticating yourself.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/uz/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/uz/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:42:13.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ХАТО: Кеш бошқарувчи рухсат бермади + + +
          +

          ХАТО

          +

          Кеш бошқарувчиси рухсат бермади.

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Кеш бошқарувчиси рухсат бермади.

          +
          + +

          Кечирасиз, сизнинг %U сўровингизга ушбу кеш бошқарувчи томонидан тасдиқдан ўтмагунингизча рухсат берилмайди.

          + +

          Агарда тасдиқдан ўтишда қийналаётган бўлсангиз кеш администратори билан боғланинг. Агарда сиз администратор бўлсангиз, Squid кеш бошқарувчи интерфейсидаги қўлланмаларни ўқинг ва кеш журналидаги хато хабарларини батафсил текшириб кўринг.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_CANNOT_FORWARD squid-5.9/errors/uz/ERR_CANNOT_FORWARD --- squid-5.8/errors/uz/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_CANNOT_FORWARD 2023-05-01 10:42:13.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          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.

          + +

          Баъзи бўлиши мумкин бўлган муаммолар:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_CONFLICT_HOST squid-5.9/errors/uz/ERR_CONFLICT_HOST --- squid-5.8/errors/uz/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_CONFLICT_HOST 2023-05-01 10:42:13.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          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.

          + +

          Баъзи бўлиши мумкин бўлган муаммолар:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_CONNECT_FAIL squid-5.9/errors/uz/ERR_CONNECT_FAIL --- squid-5.8/errors/uz/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_CONNECT_FAIL 2023-05-01 10:42:13.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          %Iга уланиш муваффақиятсиз якунланди.

          +
          + +

          Тизим қайтарди: %E

          + +

          The remote host or network may be down. Please try the request again.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_DIR_LISTING squid-5.9/errors/uz/ERR_DIR_LISTING --- squid-5.8/errors/uz/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_DIR_LISTING 2023-05-01 10:42:13.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Директория: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Директория таркиби:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Асосий директория (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_DNS_FAIL squid-5.9/errors/uz/ERR_DNS_FAIL --- squid-5.8/errors/uz/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_DNS_FAIL 2023-05-01 10:42:13.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Unable to determine IP address from host name %H

          +
          + +

          DNS сервер қайтарди:

          +
          +
          %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-5.8/errors/uz/ERR_ESI squid-5.9/errors/uz/ERR_ESI --- squid-5.8/errors/uz/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_ESI 2023-05-01 10:42:14.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          ESI жараёни муваффақиятсиз якунланди.

          +
          + +

          ESI процессор қайтарди:

          +
          +
          %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-5.8/errors/uz/ERR_FORWARDING_DENIED squid-5.9/errors/uz/ERR_FORWARDING_DENIED --- squid-5.8/errors/uz/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_FORWARDING_DENIED 2023-05-01 10:42:14.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Узатиш рад қилинди.

          +
          + +

          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-5.8/errors/uz/ERR_FTP_DISABLED squid-5.9/errors/uz/ERR_FTP_DISABLED --- squid-5.8/errors/uz/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_FTP_DISABLED 2023-05-01 10:42:14.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          FTP ўчирилган

          +
          + +

          Ушбу кеш FTP'ни қўллаб-қувватлай олмайди.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_FTP_FAILURE squid-5.9/errors/uz/ERR_FTP_FAILURE --- squid-5.8/errors/uz/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_FTP_FAILURE 2023-05-01 10:42:14.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          An FTP protocol error occurred while trying to retrieve the URL: %U

          + +

          Squid қуйидаги FTP буйруғини жўнатди:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_FTP_FORBIDDEN squid-5.9/errors/uz/ERR_FTP_FORBIDDEN --- squid-5.8/errors/uz/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_FTP_FORBIDDEN 2023-05-01 10:42:14.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          An FTP authentication failure occurred while trying to retrieve the URL: %U

          + +

          Squid қуйидаги FTP буйруғини жўнатди:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_FTP_NOT_FOUND squid-5.9/errors/uz/ERR_FTP_NOT_FOUND --- squid-5.8/errors/uz/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_FTP_NOT_FOUND 2023-05-01 10:42:14.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following URL could not be retrieved: %U

          + +

          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-5.8/errors/uz/ERR_FTP_PUT_CREATED squid-5.9/errors/uz/ERR_FTP_PUT_CREATED --- squid-5.8/errors/uz/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_FTP_PUT_CREATED 2023-05-01 10:42:15.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Операция муваффақиятли

          +

          Файл яратилди

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_FTP_PUT_ERROR squid-5.9/errors/uz/ERR_FTP_PUT_ERROR --- squid-5.8/errors/uz/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_FTP_PUT_ERROR 2023-05-01 10:42:15.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ХАТО: FTP'га юклаш муваффақиятсиз якунланди + + +
          +

          ХАТО

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          An FTP protocol error occurred while trying to retrieve the URL: %U

          + +

          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-5.8/errors/uz/ERR_FTP_PUT_MODIFIED squid-5.9/errors/uz/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/uz/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_FTP_PUT_MODIFIED 2023-05-01 10:42:15.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Операция муваффақиятли

          +

          Файл янгиланди

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_FTP_UNAVAILABLE squid-5.9/errors/uz/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/uz/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_FTP_UNAVAILABLE 2023-05-01 10:42:15.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          FTP URL: %Uни етказиб бериш учун жуда банд.

          + +

          Squid қуйидаги FTP буйруғини жўнатди:

          + +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_GATEWAY_FAILURE squid-5.9/errors/uz/ERR_GATEWAY_FAILURE --- squid-5.8/errors/uz/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_GATEWAY_FAILURE 2023-05-01 10:42:15.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          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-5.8/errors/uz/ERR_ICAP_FAILURE squid-5.9/errors/uz/ERR_ICAP_FAILURE --- squid-5.8/errors/uz/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_ICAP_FAILURE 2023-05-01 10:42:16.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          ICAP протоколда хатолик.

          +
          + +

          Тизим қайтарди: %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.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_INVALID_REQ squid-5.9/errors/uz/ERR_INVALID_REQ --- squid-5.8/errors/uz/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_INVALID_REQ 2023-05-01 10:42:16.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          Яроқсиз Сўров сўров бажарилаётган вақтда хатолик яратилди:

          + +
          +
          %R
          +
          + +

          Баъзи бўлиши мумкин бўлган муаммолар:

          +
            +
          • Йўқолган ёки номаълум сўраш методи

          • +
          • Missing URL.

          • +
          • Missing HTTP Identifier (HTTP/1.0).

          • +
          • Сўров жуда катта.

          • +
          • 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.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_INVALID_RESP squid-5.9/errors/uz/ERR_INVALID_RESP --- squid-5.8/errors/uz/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_INVALID_RESP 2023-05-01 10:42:16.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          Яроқсиз жавоб хатолик сўров жараёнида яратилди :

          + +
          +
          %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-5.8/errors/uz/ERR_INVALID_URL squid-5.9/errors/uz/ERR_INVALID_URL --- squid-5.8/errors/uz/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_INVALID_URL 2023-05-01 10:42:16.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Яроқсиз URL

          +
          + +

          Баъзи сўралган URL'лар хато.

          + +

          Баъзи бўлиши мумкин бўлган муаммолар:

          +
            +
          • Йўқолган ёки хато рухсат бериш протоколи (http:// бўлиши керак ёки шунга ўхшаш)

          • +
          • Йўқолган ҳост номи

          • +
          • 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-5.8/errors/uz/ERR_LIFETIME_EXP squid-5.9/errors/uz/ERR_LIFETIME_EXP --- squid-5.8/errors/uz/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_LIFETIME_EXP 2023-05-01 10:42:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Уланиш вақти ўтиб кетди

          +
          + +

          Squid сўровингизни бекор қилди, чунки энг юқори уланиш жараёни кетмоқда.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_NO_RELAY squid-5.9/errors/uz/ERR_NO_RELAY --- squid-5.8/errors/uz/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_NO_RELAY 2023-05-01 10:42:16.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          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-5.8/errors/uz/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/uz/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/uz/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:42:17.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          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-5.8/errors/uz/error-details.txt squid-5.9/errors/uz/error-details.txt --- squid-5.8/errors/uz/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/error-details.txt 2023-05-01 10:42:19.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/uz/ERR_PRECONDITION_FAILED squid-5.9/errors/uz/ERR_PRECONDITION_FAILED --- squid-5.8/errors/uz/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_PRECONDITION_FAILED 2023-05-01 10:42:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/uz/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/uz/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:42:17.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_READ_ERROR squid-5.9/errors/uz/ERR_READ_ERROR --- squid-5.8/errors/uz/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_READ_ERROR 2023-05-01 10:42:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Ўқишда хато

          +
          + +

          Тизим қайтарди: %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-5.8/errors/uz/ERR_READ_TIMEOUT squid-5.9/errors/uz/ERR_READ_TIMEOUT --- squid-5.8/errors/uz/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_READ_TIMEOUT 2023-05-01 10:42:17.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Узилишни ўқиш

          +
          + +

          Тизим қайтарди: %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-5.8/errors/uz/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/uz/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/uz/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:42:17.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          %I'га хавфсизлик уланиш ўрнатиш муваффақиятсиз якунланди

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/uz/ERR_SHUTTING_DOWN squid-5.9/errors/uz/ERR_SHUTTING_DOWN --- squid-5.8/errors/uz/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_SHUTTING_DOWN 2023-05-01 10:42:18.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          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-5.8/errors/uz/ERR_SOCKET_FAILURE squid-5.9/errors/uz/ERR_SOCKET_FAILURE --- squid-5.8/errors/uz/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_SOCKET_FAILURE 2023-05-01 10:42:18.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Сокет яроқсиз

          +
          + +

          Тизим қайтарди: %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-5.8/errors/uz/ERR_TOO_BIG squid-5.9/errors/uz/ERR_TOO_BIG --- squid-5.8/errors/uz/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_TOO_BIG 2023-05-01 10:42:18.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          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.

          +

          Агарда сиз

          +

          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-5.8/errors/uz/ERR_UNSUP_HTTPVERSION squid-5.9/errors/uz/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/uz/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_UNSUP_HTTPVERSION 2023-05-01 10:42:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Unsupported HTTP version

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Unsupported HTTP version

          +
          + +

          Ушбу Squid версияси сиз ишлатмоқчи бўлаётган HTTP версияси билан мос келмайди.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_UNSUP_REQ squid-5.9/errors/uz/ERR_UNSUP_REQ --- squid-5.8/errors/uz/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_UNSUP_REQ 2023-05-01 10:42:18.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          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-5.8/errors/uz/ERR_URN_RESOLVE squid-5.9/errors/uz/ERR_URN_RESOLVE --- squid-5.8/errors/uz/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_URN_RESOLVE 2023-05-01 10:42:19.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          ХАТО

          +

          Сўралган URN учун URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URN: %U

          + +
          +

          Cannot Resolve URN

          +
          + +

          Эй, %T'даги URN'лардан кўп кутманг :)

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_WRITE_ERROR squid-5.9/errors/uz/ERR_WRITE_ERROR --- squid-5.8/errors/uz/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_WRITE_ERROR 2023-05-01 10:42:19.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Write Error

          +
          + +

          Тизим қайтарди: %E

          + +

          An error condition occurred while writing to the network. Please retry your request.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/uz/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/uz/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/uz/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/uz/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:42:19.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ХАТО: Сўралган URL топилмади. + + +
          +

          ХАТО

          +

          Сўралган URL топилмади

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Zero Sized Reply

          +
          + +

          Squid ушбу сўров учун ҳеч қандай маълумот топа олмади

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_ACCESS_DENIED squid-5.9/errors/vi/ERR_ACCESS_DENIED --- squid-5.8/errors/vi/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_ACCESS_DENIED 2023-05-01 10:42:19.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Truy cập bị từ chối.

          +
          + +

          Cấu hình điều khiển truy cập không cho phép bạn yêu cầu vào lúc này. Hãy liên lạc với nhà cung cấp dịch vụ nếu bạn thấy rằng trường hợp này không đúng.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/vi/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/vi/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:42:19.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          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-5.8/errors/vi/ERR_AGENT_CONFIGURE squid-5.9/errors/vi/ERR_AGENT_CONFIGURE --- squid-5.8/errors/vi/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_AGENT_CONFIGURE 2023-05-01 10:42:19.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          LỖI

          +

          Web Browser Configuration

          +
          +
          + +
          +
          +

          Your Web Browser configuration needs to be corrected to use this network.

          +
          + +

          Cách tìm thiết lập này trong trình duyệt:

          + +
          +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-5.8/errors/vi/ERR_AGENT_WPAD squid-5.9/errors/vi/ERR_AGENT_WPAD --- squid-5.8/errors/vi/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_AGENT_WPAD 2023-05-01 10:42:20.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          LỖI

          +

          Web Browser Configuration

          +
          +
          + +
          +
          +

          Your Web Browser configuration needs to be corrected to use this network.

          +
          + +

          Cách tìm thiết lập này trong trình duyệt:

          + +
          +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
          • +
          • Bật tùy chọn Tự động phát hiện thiết lập
          • +
          +
          + +
          +For Opera browsers go to: +
            +
          • Tools -> Preferences -> Advanced -> Network -> Proxy Servers
          • +
          • Bật tùy chọn Dùng tự động cấu hình ủy nhiệm
          • +
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/vi/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/vi/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:42:20.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +LỖI: truy cập đến vùng nhớ tạm bị từ chối + + +
          +

          LỖI

          +

          Truy cập đến vùng nhớ tạm bị từ chối.

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Truy cập đến vùng nhớ tạm bị từ chối.

          +
          + +

          Để yêu cầu %U từ vùng nhớ tạm này thì trước tiên bạn cần phải tự xác thực.

          + +

          Please contact the cache administrator if you have difficulties authenticating yourself.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/vi/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/vi/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:42:20.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +LỖI: truy cập đến trình quản lý vùng nhớ tạm bị từ chối + + +
          +

          LỖI

          +

          Truy cập đến trình quản lý vùng nhớ tạm bị từ chối.

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Truy cập đến trình quản lý vùng nhớ tạm bị từ chối.

          +
          + +

          Để yêu cầu %U từ trình quản lý vùng nhớ tạm này thì trước tiên bạn cần phải tự xác thực.

          + +

          Hãy liên lạc với quản trị vùng nhớ tạm nếu bạn gặp khó khăn trong việc tự xác thực, hoặc nếu bạn có phải là quản trị thì đọc tài liệu hướng dẫn Squid về giao diện quản lý vùng nhớ tạm và kiểm tra lại sổ theo dõi vùng nhớ tạm có thông điệp lỗi chi tiết hơn không.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_CANNOT_FORWARD squid-5.9/errors/vi/ERR_CANNOT_FORWARD --- squid-5.8/errors/vi/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_CANNOT_FORWARD 2023-05-01 10:42:20.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          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.

          + +

          Một số vấn đề có thể gặp:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_CONFLICT_HOST squid-5.9/errors/vi/ERR_CONFLICT_HOST --- squid-5.8/errors/vi/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_CONFLICT_HOST 2023-05-01 10:42:20.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          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.

          + +

          Một số vấn đề có thể gặp:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_CONNECT_FAIL squid-5.9/errors/vi/ERR_CONNECT_FAIL --- squid-5.8/errors/vi/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_CONNECT_FAIL 2023-05-01 10:42:21.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Kết nối đến %I bị lỗi.

          +
          + +

          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-5.8/errors/vi/ERR_DIR_LISTING squid-5.9/errors/vi/ERR_DIR_LISTING --- squid-5.8/errors/vi/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_DIR_LISTING 2023-05-01 10:42:21.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Thư mục: %U + + +
          +

          Thư mục: %U/

          +
          +
          + +
          +

          Nội dung thư mục:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Thư mục cấp trên (Thư mục gốc)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_DNS_FAIL squid-5.9/errors/vi/ERR_DNS_FAIL --- squid-5.8/errors/vi/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_DNS_FAIL 2023-05-01 10:42:21.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          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

          +
          + +

          Máy phục vụ DNS trả lại:

          +
          +
          %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-5.8/errors/vi/ERR_ESI squid-5.9/errors/vi/ERR_ESI --- squid-5.8/errors/vi/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_ESI 2023-05-01 10:42:21.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Lỗi xử lý ESI.

          +
          + +

          Bộ xử lý ESI trả lại:

          +
          +
          %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-5.8/errors/vi/ERR_FORWARDING_DENIED squid-5.9/errors/vi/ERR_FORWARDING_DENIED --- squid-5.8/errors/vi/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_FORWARDING_DENIED 2023-05-01 10:42:21.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Chuyển tiếp bị từ chối.

          +
          + +

          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-5.8/errors/vi/ERR_FTP_DISABLED squid-5.9/errors/vi/ERR_FTP_DISABLED --- squid-5.8/errors/vi/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_FTP_DISABLED 2023-05-01 10:42:21.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Chức năng FTP bị tắt

          +
          + +

          This cache does not support FTP.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_FTP_FAILURE squid-5.9/errors/vi/ERR_FTP_FAILURE --- squid-5.8/errors/vi/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_FTP_FAILURE 2023-05-01 10:42:22.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          Gặp lỗi giao thức FTP trong khi thử lấy địa chỉ URL: %U

          + +

          Squid đã gửi lệnh FTP theo đây:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_FTP_FORBIDDEN squid-5.9/errors/vi/ERR_FTP_FORBIDDEN --- squid-5.8/errors/vi/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_FTP_FORBIDDEN 2023-05-01 10:42:22.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          Gặp lỗi xác thực FTP trong khi thử lấy địa chỉ URL: %U

          + +

          Squid đã gửi lệnh FTP theo đây:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_FTP_NOT_FOUND squid-5.9/errors/vi/ERR_FTP_NOT_FOUND --- squid-5.8/errors/vi/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_FTP_NOT_FOUND 2023-05-01 10:42:22.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following URL could not be retrieved: %U

          + +

          Squid đã gửi lệnh FTP theo đây:

          +
          +
          %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-5.8/errors/vi/ERR_FTP_PUT_CREATED squid-5.9/errors/vi/ERR_FTP_PUT_CREATED --- squid-5.8/errors/vi/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_FTP_PUT_CREATED 2023-05-01 10:42:22.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Thao tác thành công

          +

          Tập tin đã được tạo

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_FTP_PUT_ERROR squid-5.9/errors/vi/ERR_FTP_PUT_ERROR --- squid-5.8/errors/vi/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_FTP_PUT_ERROR 2023-05-01 10:42:22.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +LỖI: không tải lên được qua FTP + + +
          +

          LỖI

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          Gặp lỗi giao thức FTP trong khi thử lấy địa chỉ URL: %U

          + +

          Squid đã gửi lệnh FTP theo đây:

          +
          +
          %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-5.8/errors/vi/ERR_FTP_PUT_MODIFIED squid-5.9/errors/vi/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/vi/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_FTP_PUT_MODIFIED 2023-05-01 10:42:23.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          Thao tác thành công

          +

          Tập tin đã được cập nhật

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_FTP_UNAVAILABLE squid-5.9/errors/vi/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/vi/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_FTP_UNAVAILABLE 2023-05-01 10:42:23.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          Máy phục vụ FTP quá bận để lấy địa chỉ URL: %U

          + +

          Squid đã gửi lệnh FTP theo đây:

          + +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_GATEWAY_FAILURE squid-5.9/errors/vi/ERR_GATEWAY_FAILURE --- squid-5.8/errors/vi/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_GATEWAY_FAILURE 2023-05-01 10:42:23.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          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-5.8/errors/vi/ERR_ICAP_FAILURE squid-5.9/errors/vi/ERR_ICAP_FAILURE --- squid-5.8/errors/vi/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_ICAP_FAILURE 2023-05-01 10:42:23.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Lỗi giao thức ICAP.

          +
          + +

          The system returned: %E

          + +

          This means that some aspect of the ICAP communication failed.

          + +

          Một số vấn đề có thể gặp:

          +
            +
          • The ICAP server is not reachable.

          • +
          • Nhận được một đáp ứng cấm từ máy phục vụ ICAP.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_INVALID_REQ squid-5.9/errors/vi/ERR_INVALID_REQ --- squid-5.8/errors/vi/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_INVALID_REQ 2023-05-01 10:42:23.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          Gặp một lỗi Sai Yêu Cầu trong khi thử xử lý yêu cầu :

          + +
          +
          %R
          +
          + +

          Một số vấn đề có thể gặp:

          +
            +
          • Phương pháp truy cập còn thiếu hay không rõ.

          • +
          • URL còn thiếu.

          • +
          • Thiếu dấu nhận diện HTTP (HTTP/1.0).

          • +
          • Yêu cầu quá lớn.

          • +
          • Dòng đầu chiều dài nội dung (Content-Length) bị thiếu trong yêu cầu POST hay PUT.

          • +
          • Gặp ký tự cấm trong tên máy: không cho phép dùng dấu gạch dưới.

          • +
          • HTTP/1.1 Mong đợi: tính năng được yêu cầu từ phần mềm HTTP/1.0.

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_INVALID_RESP squid-5.9/errors/vi/ERR_INVALID_RESP --- squid-5.8/errors/vi/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_INVALID_RESP 2023-05-01 10:42:23.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          Gặp một lỗi Sai Đáp Ứng trong khi thử xử lý yêu cầu :

          + +
          +
          %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-5.8/errors/vi/ERR_INVALID_URL squid-5.9/errors/vi/ERR_INVALID_URL --- squid-5.8/errors/vi/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_INVALID_URL 2023-05-01 10:42:24.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          URL sai

          +
          + +

          Địa chỉ URL yêu cầu có một phần không đúng.

          + +

          Một số vấn đề có thể gặp:

          +
            +
          • Giao thức truy cập còn thiếu hay sai (nên là http:// hay tương tự)

          • +
          • Tên máy còn thiếu

          • +
          • Gặp ký tự thoát đôi cấm trong đường dẫn URL

          • +
          • Gặp ký tự cấm trong tên máy: không cho phép dùng dấu gạch dưới.

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_LIFETIME_EXP squid-5.9/errors/vi/ERR_LIFETIME_EXP --- squid-5.8/errors/vi/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_LIFETIME_EXP 2023-05-01 10:42:24.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Quá hạn kết nối

          +
          + +

          Squid đã chấm dứt yêu cầu vì nó vượt quá thời gian kết nối tối đa.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_NO_RELAY squid-5.9/errors/vi/ERR_NO_RELAY --- squid-5.8/errors/vi/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_NO_RELAY 2023-05-01 10:42:24.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Không có bộ tiếp lại WAIS

          +
          + +

          There is no WAIS Relay host defined for this Cache! Yell at the administrator.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/vi/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/vi/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:42:24.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          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-5.8/errors/vi/error-details.txt squid-5.9/errors/vi/error-details.txt --- squid-5.8/errors/vi/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/error-details.txt 2023-05-01 10:42:27.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/vi/ERR_PRECONDITION_FAILED squid-5.9/errors/vi/ERR_PRECONDITION_FAILED --- squid-5.8/errors/vi/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_PRECONDITION_FAILED 2023-05-01 10:42:24.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/vi/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/vi/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:42:25.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_READ_ERROR squid-5.9/errors/vi/ERR_READ_ERROR --- squid-5.8/errors/vi/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_READ_ERROR 2023-05-01 10:42:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Lỗi đọc

          +
          + +

          The system returned: %E

          + +

          Gặp lỗi trong khi đọc dữ liệu từ mạng. Hãy thử lại gửi yêu cầu.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_READ_TIMEOUT squid-5.9/errors/vi/ERR_READ_TIMEOUT --- squid-5.8/errors/vi/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_READ_TIMEOUT 2023-05-01 10:42:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Quá hạn đọc

          +
          + +

          The system returned: %E

          + +

          Quá hạn trong khi đợi đọc dữ liệu từ mạng. Có thể là mạng không chạy được hoặc bị tắc nghẽn. Hãy thử lại gửi yêu cầu.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/vi/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/vi/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:42:25.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Không thiết lập được một kết nối bảo mật đến %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/vi/ERR_SHUTTING_DOWN squid-5.9/errors/vi/ERR_SHUTTING_DOWN --- squid-5.8/errors/vi/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_SHUTTING_DOWN 2023-05-01 10:42:25.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          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-5.8/errors/vi/ERR_SOCKET_FAILURE squid-5.9/errors/vi/ERR_SOCKET_FAILURE --- squid-5.8/errors/vi/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_SOCKET_FAILURE 2023-05-01 10:42:25.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Lỗi ổ cắm

          +
          + +

          The system returned: %E

          + +

          Squid không thể tạo một ổ cắm TCP, giả sử do trọng tải quá lớn. Hãy thử lại gửi yêu cầu.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_TOO_BIG squid-5.9/errors/vi/ERR_TOO_BIG --- squid-5.8/errors/vi/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_TOO_BIG 2023-05-01 10:42:26.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          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.

          +
          + +

          Gửi một yêu cầu POST (gửi) hay PUT (để) thì bạn đang thử tải lên một mục quá lớn.

          +

          Gửi một yêu cầu GET (lấy) thì bạn đang thử tải về một mục quá lớn.

          +

          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-5.8/errors/vi/ERR_UNSUP_HTTPVERSION squid-5.9/errors/vi/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/vi/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_UNSUP_HTTPVERSION 2023-05-01 10:42:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          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-5.8/errors/vi/ERR_UNSUP_REQ squid-5.9/errors/vi/ERR_UNSUP_REQ --- squid-5.8/errors/vi/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_UNSUP_REQ 2023-05-01 10:42:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          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 không hỗ trợ tất cả các phương pháp yêu cầu cho mỗi giao thức truy cập. Chẳng hạn, bạn không có khả năng POST một yêu cầu Gopher.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_URN_RESOLVE squid-5.9/errors/vi/ERR_URN_RESOLVE --- squid-5.8/errors/vi/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_URN_RESOLVE 2023-05-01 10:42:26.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          LỖI

          +

          Không thể lấy được một địa chỉ URL cho URN yêu cầu

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URN: %U

          + +
          +

          Không tìm thấy URN

          +
          + +

          URN trên %T không có nhiều khả năng.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_WRITE_ERROR squid-5.9/errors/vi/ERR_WRITE_ERROR --- squid-5.8/errors/vi/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_WRITE_ERROR 2023-05-01 10:42:26.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          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

          + +

          Gặp lỗi trong khi ghi vào mạng. Hãy thử lại gửi yêu cầu.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/vi/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/vi/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/vi/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/vi/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:42:27.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +LỖI: không thể lấy địa chỉ URL yêu cầu + + +
          +

          LỖI

          +

          The requested URL could not be retrieved

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Zero Sized Reply

          +
          + +

          Squid chưa nhận dữ liệu cho yêu cầu này.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_ACCESS_DENIED squid-5.9/errors/zh-hans/ERR_ACCESS_DENIED --- squid-5.8/errors/zh-hans/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_ACCESS_DENIED 2023-05-01 10:42:27.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          访问被拒绝。

          +
          + +

          Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/zh-hans/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/zh-hans/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:42:27.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_AGENT_CONFIGURE squid-5.9/errors/zh-hans/ERR_AGENT_CONFIGURE --- squid-5.8/errors/zh-hans/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_AGENT_CONFIGURE 2023-05-01 10:42:27.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          错误

          +

          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.
          • +
          +
          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_AGENT_WPAD squid-5.9/errors/zh-hans/ERR_AGENT_WPAD --- squid-5.8/errors/zh-hans/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_AGENT_WPAD 2023-05-01 10:42:27.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          错误

          +

          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
          • +
          +
          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/zh-hans/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/zh-hans/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:42:27.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +错误: 缓存访问被拒绝 + + +
          +

          错误

          +

          缓存访问被拒绝。

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          缓存访问被拒绝。

          +
          + +

          抱歉,您不被允许通过本网络缓存服务器访问下列位置 %U 除非您通过了我们的身份验证。

          + +

          Please contact the cache administrator if you have difficulties authenticating yourself.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/zh-hans/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/zh-hans/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:42:28.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +错误: 缓存管理访问被拒绝 + + +
          +

          错误

          +

          缓存管理访问被拒绝。

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          缓存管理访问被拒绝。

          +
          + +

          抱歉,您不被允许通过本缓存管理器访问以下位置 %U 除非您通过我们的身份验证。

          + +

          如果您是在身份验证上发生问题,请先确定您有权对缓存使用管理器。或是与管理者联系。如果您就是管理者,请详细阅读 Squid 所附文件中与 cache manager 有关部份或检查 cache log 以便得到更详尽的细节。

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_CANNOT_FORWARD squid-5.9/errors/zh-hans/ERR_CANNOT_FORWARD --- squid-5.8/errors/zh-hans/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_CANNOT_FORWARD 2023-05-01 10:42:28.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          目前无法将您的请求进行转送操作

          +
          + +

          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.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_CONFLICT_HOST squid-5.9/errors/zh-hans/ERR_CONFLICT_HOST --- squid-5.8/errors/zh-hans/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_CONFLICT_HOST 2023-05-01 10:42:28.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_CONNECT_FAIL squid-5.9/errors/zh-hans/ERR_CONNECT_FAIL --- squid-5.8/errors/zh-hans/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_CONNECT_FAIL 2023-05-01 10:42:28.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          连接到 %I 失败。

          +
          + +

          系统返回以下内容:%E

          + +

          The remote host or network may be down. Please try the request again.

          + +

          缓存服务器的管理员 %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_DIR_LISTING squid-5.9/errors/zh-hans/ERR_DIR_LISTING --- squid-5.8/errors/zh-hans/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_DIR_LISTING 2023-05-01 10:42:28.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +文件夹: %U + + +
          +

          文件夹: %U/

          +
          +
          + +
          +

          文件夹内容:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          上级文件夹 (根文件夹)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_DNS_FAIL squid-5.9/errors/zh-hans/ERR_DNS_FAIL --- squid-5.8/errors/zh-hans/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_DNS_FAIL 2023-05-01 10:42:29.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          不能由主机名 %H 确定 IP 地址。

          +
          + +

          DNS 服务器返回了:

          +
          +
          %z
          +
          + +

          这表示 缓存服务器无法解析您输入网址(URL)中的主机名称, 请检查该名称是否正确。

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_ESI squid-5.9/errors/zh-hans/ERR_ESI --- squid-5.8/errors/zh-hans/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_ESI 2023-05-01 10:42:29.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          ESI 处理失败。

          +
          + +

          ESI 处理器返回了:

          +
          +
          %Z
          +
          + +

          这意味着代理不能处理 ESI 模板。请向网站管理员报告这个错误。

          + +

          您的网站管理员是 %w

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_FORWARDING_DENIED squid-5.9/errors/zh-hans/ERR_FORWARDING_DENIED --- squid-5.8/errors/zh-hans/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_FORWARDING_DENIED 2023-05-01 10:42:29.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          拒绝转送

          +
          + +

          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.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_FTP_DISABLED squid-5.9/errors/zh-hans/ERR_FTP_DISABLED --- squid-5.8/errors/zh-hans/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_FTP_DISABLED 2023-05-01 10:42:29.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          FTP 被禁用

          +
          + +

          本缓存服务器未开放文件传输服务。

          + +

          缓存服务器的管理员 %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_FTP_FAILURE squid-5.9/errors/zh-hans/ERR_FTP_FAILURE --- squid-5.8/errors/zh-hans/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_FTP_FAILURE 2023-05-01 10:42:29.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          尝试获取该URL:%U时发生一个FTP协议错误

          + +

          本缓存服务器发出以下 FTP 命令:

          +
          +
          %f
          +
          + +

          服务器回应了:

          +
          +
          %F
          +
          %g
          +
          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_FTP_FORBIDDEN squid-5.9/errors/zh-hans/ERR_FTP_FORBIDDEN --- squid-5.8/errors/zh-hans/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_FTP_FORBIDDEN 2023-05-01 10:42:29.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          尝试获取 URL: %U 时发生一个FTP认证错误

          + +

          本缓存服务器发出以下 FTP 命令:

          +
          +
          %f
          +
          + +

          服务器回应了:

          +
          +
          %F
          +
          %g
          +
          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_FTP_NOT_FOUND squid-5.9/errors/zh-hans/ERR_FTP_NOT_FOUND --- squid-5.8/errors/zh-hans/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_FTP_NOT_FOUND 2023-05-01 10:42:30.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          无法取回下面的 URL: %U

          + +

          本缓存服务器发出以下 FTP 命令:

          +
          +
          %f
          +
          + +

          服务器回应了:

          +
          +
          %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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_FTP_PUT_CREATED squid-5.9/errors/zh-hans/ERR_FTP_PUT_CREATED --- squid-5.8/errors/zh-hans/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_FTP_PUT_CREATED 2023-05-01 10:42:30.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          操作成功

          +

          文件已创建

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_FTP_PUT_ERROR squid-5.9/errors/zh-hans/ERR_FTP_PUT_ERROR --- squid-5.8/errors/zh-hans/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_FTP_PUT_ERROR 2023-05-01 10:42:30.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +错误: FTP上传失败 + + +
          +

          错误

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          尝试获取该URL:%U时发生一个FTP协议错误

          + +

          本缓存服务器发出以下 FTP 命令:

          +
          +
          %f
          +
          + +

          服务器回应了:

          +
          +
          %F
          +
          + +

          这说明 FTP 服务器可能没有权限或空间存储该文件。请检查路径、权限、磁盘空间后重试。

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_FTP_PUT_MODIFIED squid-5.9/errors/zh-hans/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/zh-hans/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_FTP_PUT_MODIFIED 2023-05-01 10:42:30.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          操作成功

          +

          文件已更新

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_FTP_UNAVAILABLE squid-5.9/errors/zh-hans/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/zh-hans/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_FTP_UNAVAILABLE 2023-05-01 10:42:30.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          FTP 服务器太忙,无法取回 URL: %U

          + +

          本缓存服务器发出以下 FTP 命令:

          + +
          +
          %f
          +
          + +

          服务器回应了:

          +
          +
          %F
          +
          %g
          +
          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_GATEWAY_FAILURE squid-5.9/errors/zh-hans/ERR_GATEWAY_FAILURE --- squid-5.8/errors/zh-hans/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_GATEWAY_FAILURE 2023-05-01 10:42:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_ICAP_FAILURE squid-5.9/errors/zh-hans/ERR_ICAP_FAILURE --- squid-5.8/errors/zh-hans/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_ICAP_FAILURE 2023-05-01 10:42:31.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          ICAP 协议错误。

          +
          + +

          系统返回以下内容:%E

          + +

          这意味着 ICAP 通信的某些地方失败了。

          + +

          可能的问题包括:

          +
            +
          • 无法到达 ICAP 服务器。

          • +
          • 收到来自 ICAP 服务器的一个非法响应。

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_INVALID_REQ squid-5.9/errors/zh-hans/ERR_INVALID_REQ --- squid-5.8/errors/zh-hans/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_INVALID_REQ 2023-05-01 10:42:31.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          非法请求 尝试处理请求是发生错误:

          + +
          +
          %R
          +
          + +

          可能的问题包括:

          +
            +
          • 缺少请求方式或未知的请求方式

          • +
          • 缺少网址

          • +
          • 缺少 HTTP 标识(HTTP/1.0)

          • +
          • 请求命令过长

          • +
          • POST 或 PUT 请求中丢失内容长度(Content-Length)。

          • +
          • 主机名称中包含不合法的字符;下划线是不允许的。

          • +
          • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

          • +
          + +

          缓存服务器的管理员 %w.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_INVALID_RESP squid-5.9/errors/zh-hans/ERR_INVALID_RESP --- squid-5.8/errors/zh-hans/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_INVALID_RESP 2023-05-01 10:42:31.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          非法响应 尝试处理请求时发生错误:

          + +
          +
          %R
          +
          + +

          无法理解联系的服务器所传回的 HTTP 响应消息或者它已经损坏。请联系网站运行人员。

          + +

          如果需要,您的缓存管理员可以提供更多细节以助了解该问题的准确性质。

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_INVALID_URL squid-5.9/errors/zh-hans/ERR_INVALID_URL --- squid-5.8/errors/zh-hans/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_INVALID_URL 2023-05-01 10:42:31.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          无效的网址

          +
          + +

          请求的 URL 地址有些部分不正确。

          + +

          可能的问题包括:

          +
            +
          • 缺少或不正确的通讯协议(应该如 http://或类似的开头)

          • +
          • 缺少欲连结的主机名称

          • +
          • 网址路径中有不合法双重转义符

          • +
          • 主机名称中包含不合法的字符;下划线是不允许的。

          • +
          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_LIFETIME_EXP squid-5.9/errors/zh-hans/ERR_LIFETIME_EXP --- squid-5.8/errors/zh-hans/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_LIFETIME_EXP 2023-05-01 10:42:32.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          连接已过期

          +
          + +

          缓存服务器已终止您的连接请求,因为已经超过了最大连接等待时间。

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_NO_RELAY squid-5.9/errors/zh-hans/ERR_NO_RELAY --- squid-5.8/errors/zh-hans/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_NO_RELAY 2023-05-01 10:42:32.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          无 Wais 中继

          +
          + +

          There is no WAIS Relay host defined for this Cache! Yell at the administrator.

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/zh-hans/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/zh-hans/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:42:32.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          请求的文件在本缓存服务器上未找到,而您设定了only-if-cached(只读取缓存)指令。

          +
          + +

          您送出了一个包含 only-if-cached (只读取缓存)缓存控制指令的连结请求。而所要的文件并未存在于本缓存服务器中,或者这个连结请求需要刷新文件而 only-if-cached 指令禁止这么做。

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/error-details.txt squid-5.9/errors/zh-hans/error-details.txt --- squid-5.8/errors/zh-hans/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/error-details.txt 2023-05-01 10:42:34.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/zh-hans/ERR_PRECONDITION_FAILED squid-5.9/errors/zh-hans/ERR_PRECONDITION_FAILED --- squid-5.8/errors/zh-hans/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_PRECONDITION_FAILED 2023-05-01 10:42:32.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 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-5.8/errors/zh-hans/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/zh-hans/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/zh-hans/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:42:32.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_READ_ERROR squid-5.9/errors/zh-hans/ERR_READ_ERROR --- squid-5.8/errors/zh-hans/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_READ_ERROR 2023-05-01 10:42:32.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          读取错误

          +
          + +

          系统返回以下内容:%E

          + +

          An error condition occurred while reading data from the network. Please retry your request.

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_READ_TIMEOUT squid-5.9/errors/zh-hans/ERR_READ_TIMEOUT --- squid-5.8/errors/zh-hans/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_READ_TIMEOUT 2023-05-01 10:42:33.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          读取超时

          +
          + +

          系统返回以下内容:%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.

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/zh-hans/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/zh-hans/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:42:33.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          建立到 %I 的安全连接失败

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          此代理和远端主机无法为处理您的请求在相互可接受的安全设置上协商一致。有可能远端计算机不支持安全连接,或者代理对主机的安全凭据不认可。

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_SHUTTING_DOWN squid-5.9/errors/zh-hans/ERR_SHUTTING_DOWN --- squid-5.8/errors/zh-hans/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_SHUTTING_DOWN 2023-05-01 10:42:33.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 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.

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_SOCKET_FAILURE squid-5.9/errors/zh-hans/ERR_SOCKET_FAILURE --- squid-5.8/errors/zh-hans/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_SOCKET_FAILURE 2023-05-01 10:42:33.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          Socket 建立失败

          +
          + +

          系统返回以下内容:%E

          + +

          Squid (缓存服务器)无法建立 TCP socket(无法向系统申请建立新的网络连接),可能是因为负荷过重,请重新尝试。

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_TOO_BIG squid-5.9/errors/zh-hans/ERR_TOO_BIG --- squid-5.8/errors/zh-hans/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_TOO_BIG 2023-05-01 10:42:33.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          请求或响应太大

          +
          + +

          如果您在执行 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.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_UNSUP_HTTPVERSION squid-5.9/errors/zh-hans/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/zh-hans/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_UNSUP_HTTPVERSION 2023-05-01 10:42:34.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          不支持的 HTTP 版本

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          不支持的 HTTP 版本

          +
          + +

          此版本的 Squid 不接受您试图使用的 HTTP 版本。

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_UNSUP_REQ squid-5.9/errors/zh-hans/ERR_UNSUP_REQ --- squid-5.8/errors/zh-hans/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_UNSUP_REQ 2023-05-01 10:42:34.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          不支持的请求方式和协议

          +
          + +

          Squid (缓存服务器)不能对所有的存取协议支持所有的请求方式。比如说,你不能对 GOPHER 进行一个 POST 请求。

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_URN_RESOLVE squid-5.9/errors/zh-hans/ERR_URN_RESOLVE --- squid-5.8/errors/zh-hans/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_URN_RESOLVE 2023-05-01 10:42:34.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          错误

          +

          URN 中的一个网址(URL)无法获取

          +
          +
          + +
          +

          当尝试读取以下 URN 时: %U

          + +
          +

          不能解析 URN

          +
          + +

          抱歉!您不能对 %T 上的 URNs 期待太多 :)

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_WRITE_ERROR squid-5.9/errors/zh-hans/ERR_WRITE_ERROR --- squid-5.8/errors/zh-hans/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_WRITE_ERROR 2023-05-01 10:42:34.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          写入错误

          +
          + +

          系统返回以下内容:%E

          + +

          An error condition occurred while writing to the network. Please retry your request.

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hans/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/zh-hans/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/zh-hans/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hans/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:42:34.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +错误: 不能获取请求的 URL + + +
          +

          错误

          +

          您所请求的网址(URL)无法获取

          +
          +
          + +
          +

          当尝试取回该 URL 时遇到下面的错误:%U

          + +
          +

          响应内容长度为零

          +
          + +

          本缓存服务器从被连接的服务器上没有收到任何数据。

          + +

          缓存服务器的管理员 %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_ACCESS_DENIED squid-5.9/errors/zh-hant/ERR_ACCESS_DENIED --- squid-5.8/errors/zh-hant/ERR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_ACCESS_DENIED 2023-05-01 10:42:34.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          存取被拒絕

          +
          + +

          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-5.8/errors/zh-hant/ERR_ACL_TIME_QUOTA_EXCEEDED squid-5.9/errors/zh-hant/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-5.8/errors/zh-hant/ERR_ACL_TIME_QUOTA_EXCEEDED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_ACL_TIME_QUOTA_EXCEEDED 2023-05-01 10:42:35.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          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-5.8/errors/zh-hant/ERR_AGENT_CONFIGURE squid-5.9/errors/zh-hant/ERR_AGENT_CONFIGURE --- squid-5.8/errors/zh-hant/ERR_AGENT_CONFIGURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_AGENT_CONFIGURE 2023-05-01 10:42:35.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          錯誤

          +

          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-5.8/errors/zh-hant/ERR_AGENT_WPAD squid-5.9/errors/zh-hant/ERR_AGENT_WPAD --- squid-5.8/errors/zh-hant/ERR_AGENT_WPAD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_AGENT_WPAD 2023-05-01 10:42:35.000000000 +1200 @@ -0,0 +1,60 @@ + + + + +Web Browser Configuration + + +
          +

          錯誤

          +

          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-5.8/errors/zh-hant/ERR_CACHE_ACCESS_DENIED squid-5.9/errors/zh-hant/ERR_CACHE_ACCESS_DENIED --- squid-5.8/errors/zh-hant/ERR_CACHE_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_CACHE_ACCESS_DENIED 2023-05-01 10:42:35.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +錯誤: 網路快取伺服器存取被拒絕 + + +
          +

          錯誤

          +

          快取伺服器存取被拒絕

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          快取伺服器存取被拒絕

          +
          + +

          抱歉,您不被允許透過我們這個網路快取伺服器傳回下列位置 %U 除非您通過了我們的身份驗證。

          + +

          Please contact the cache administrator if you have difficulties authenticating yourself.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_CACHE_MGR_ACCESS_DENIED squid-5.9/errors/zh-hant/ERR_CACHE_MGR_ACCESS_DENIED --- squid-5.8/errors/zh-hant/ERR_CACHE_MGR_ACCESS_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_CACHE_MGR_ACCESS_DENIED 2023-05-01 10:42:35.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +錯誤: 使用快取伺服器管理程式被拒絕 + + +
          +

          錯誤

          +

          快取伺服器管理程式使用被拒

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          快取伺服器管理程式使用被拒

          +
          + +

          抱歉,您不被允許透過我們這個快取伺服器管理程式傳回下列位置 %U 除非您通過我們的身份驗證。

          + +

          如果您是在身份驗證上發生問題,請先確定您有權對快取伺服器使用管理程式。或是與管理者聯繫。如果您就是管理者,請詳細閱讀 Squid 所附文件中與cache manager 有關部份或檢查 cache log 以便得到更詳盡的細節。

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_CANNOT_FORWARD squid-5.9/errors/zh-hant/ERR_CANNOT_FORWARD --- squid-5.8/errors/zh-hant/ERR_CANNOT_FORWARD 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_CANNOT_FORWARD 2023-05-01 10:42:35.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          目前無法替您的網站連結要求進行轉向動作

          +
          + +

          This request could not be forwarded to the origin server or to any parent caches.

          + +

          Some possible problems are:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_CONFLICT_HOST squid-5.9/errors/zh-hant/ERR_CONFLICT_HOST --- squid-5.8/errors/zh-hant/ERR_CONFLICT_HOST 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_CONFLICT_HOST 2023-05-01 10:42:36.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          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:

          +
            +
          • 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.
          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_CONNECT_FAIL squid-5.9/errors/zh-hant/ERR_CONNECT_FAIL --- squid-5.8/errors/zh-hant/ERR_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_CONNECT_FAIL 2023-05-01 10:42:36.000000000 +1200 @@ -0,0 +1,41 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Connection to %I failed.

          +
          + +

          系統回應了下列錯誤訊息:%E

          + +

          The remote host or network may be down. Please try the request again.

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_DIR_LISTING squid-5.9/errors/zh-hant/ERR_DIR_LISTING --- squid-5.8/errors/zh-hant/ERR_DIR_LISTING 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_DIR_LISTING 2023-05-01 10:42:36.000000000 +1200 @@ -0,0 +1,42 @@ + + + + +Directory: %U + + +
          +

          Directory: %U/

          +
          +
          + +
          +

          Directory Content:

          + +
          +
          %z
          +
          + + + + + + + +%g + +
          Parent Directory (Root Directory)
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_DNS_FAIL squid-5.9/errors/zh-hant/ERR_DNS_FAIL --- squid-5.8/errors/zh-hant/ERR_DNS_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_DNS_FAIL 2023-05-01 10:42:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          無法將您輸入的網站主機位置轉譯成正確的 IP 位置 %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-5.8/errors/zh-hant/ERR_ESI squid-5.9/errors/zh-hant/ERR_ESI --- squid-5.8/errors/zh-hant/ERR_ESI 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_ESI 2023-05-01 10:42:36.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          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-5.8/errors/zh-hant/ERR_FORWARDING_DENIED squid-5.9/errors/zh-hant/ERR_FORWARDING_DENIED --- squid-5.8/errors/zh-hant/ERR_FORWARDING_DENIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_FORWARDING_DENIED 2023-05-01 10:42:37.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          轉送要求被拒

          +
          + +

          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-5.8/errors/zh-hant/ERR_FTP_DISABLED squid-5.9/errors/zh-hant/ERR_FTP_DISABLED --- squid-5.8/errors/zh-hant/ERR_FTP_DISABLED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_FTP_DISABLED 2023-05-01 10:42:37.000000000 +1200 @@ -0,0 +1,39 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          禁止使用檔案傳輸

          +
          + +

          本快取伺服器並未開放支援檔案傳輸服務。

          + +

          Your cache administrator is %w.

          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_FTP_FAILURE squid-5.9/errors/zh-hant/ERR_FTP_FAILURE --- squid-5.8/errors/zh-hant/ERR_FTP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_FTP_FAILURE 2023-05-01 10:42:37.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          在嘗試傳回下面的網址(URL)時發生檔案傳輸通訊協定錯誤:%U

          + +

          Squid 伺服器替您送出下列檔案傳輸命令:

          +
          +
          %f
          +
          + +

          The server responded with:

          +
          +
          %F
          +
          %g
          +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_FTP_FORBIDDEN squid-5.9/errors/zh-hant/ERR_FTP_FORBIDDEN --- squid-5.8/errors/zh-hant/ERR_FTP_FORBIDDEN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_FTP_FORBIDDEN 2023-05-01 10:42:37.000000000 +1200 @@ -0,0 +1,43 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          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-5.8/errors/zh-hant/ERR_FTP_NOT_FOUND squid-5.9/errors/zh-hant/ERR_FTP_NOT_FOUND --- squid-5.8/errors/zh-hant/ERR_FTP_NOT_FOUND 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_FTP_NOT_FOUND 2023-05-01 10:42:37.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          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-5.8/errors/zh-hant/ERR_FTP_PUT_CREATED squid-5.9/errors/zh-hant/ERR_FTP_PUT_CREATED --- squid-5.8/errors/zh-hant/ERR_FTP_PUT_CREATED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_FTP_PUT_CREATED 2023-05-01 10:42:37.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          所要求的指令成功地被完成

          +

          檔案已被成功地建立

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_FTP_PUT_ERROR squid-5.9/errors/zh-hant/ERR_FTP_PUT_ERROR --- squid-5.8/errors/zh-hant/ERR_FTP_PUT_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_FTP_PUT_ERROR 2023-05-01 10:42:38.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +錯誤: 檔案傳輸上傳(PUT)失敗 + + +
          +

          錯誤

          +

          FTP PUT upload failed

          +
          +
          + +
          +

          在嘗試傳回下面的網址(URL)時發生檔案傳輸通訊協定錯誤:%U

          + +

          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-5.8/errors/zh-hant/ERR_FTP_PUT_MODIFIED squid-5.9/errors/zh-hant/ERR_FTP_PUT_MODIFIED --- squid-5.8/errors/zh-hant/ERR_FTP_PUT_MODIFIED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_FTP_PUT_MODIFIED 2023-05-01 10:42:38.000000000 +1200 @@ -0,0 +1,27 @@ + + + + +FTP PUT Successful. + + +
          +

          所要求的指令成功地被完成

          +

          檔案已被更新了

          +
          +
          + +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_FTP_UNAVAILABLE squid-5.9/errors/zh-hant/ERR_FTP_UNAVAILABLE --- squid-5.8/errors/zh-hant/ERR_FTP_UNAVAILABLE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_FTP_UNAVAILABLE 2023-05-01 10:42:38.000000000 +1200 @@ -0,0 +1,44 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          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-5.8/errors/zh-hant/ERR_GATEWAY_FAILURE squid-5.9/errors/zh-hant/ERR_GATEWAY_FAILURE --- squid-5.8/errors/zh-hant/ERR_GATEWAY_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_GATEWAY_FAILURE 2023-05-01 10:42:38.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          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-5.8/errors/zh-hant/ERR_ICAP_FAILURE squid-5.9/errors/zh-hant/ERR_ICAP_FAILURE --- squid-5.8/errors/zh-hant/ERR_ICAP_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_ICAP_FAILURE 2023-05-01 10:42:38.000000000 +1200 @@ -0,0 +1,45 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          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.

          • +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_INVALID_REQ squid-5.9/errors/zh-hant/ERR_INVALID_REQ --- squid-5.8/errors/zh-hant/ERR_INVALID_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_INVALID_REQ 2023-05-01 10:42:39.000000000 +1200 @@ -0,0 +1,53 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          Invalid Request error was encountered while trying to process the request:

          + +
          +
          %R
          +
          + +

          Some possible problems are:

          +
            +
          • 要求方式遺失或是未知

          • +
          • 網站位置遺失

          • +
          • HTTP 標準的宣告遺失(HTTP/1.0)

          • +
          • 要求命令過長

          • +
          • 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.

          +
          +
          + + + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_INVALID_RESP squid-5.9/errors/zh-hant/ERR_INVALID_RESP --- squid-5.8/errors/zh-hant/ERR_INVALID_RESP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_INVALID_RESP 2023-05-01 10:42:39.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(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.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_INVALID_URL squid-5.9/errors/zh-hant/ERR_INVALID_URL --- squid-5.8/errors/zh-hant/ERR_INVALID_URL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_INVALID_URL 2023-05-01 10:42:39.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          不正確的位置

          +
          + +

          Some aspect of the requested URL is incorrect.

          + +

          Some possible problems are:

          +
            +
          • 缺少或不正確的通訊協定宣告(應該是 http:// 或是類似的開頭)

          • +
          • 缺少欲連結的主機名稱

          • +
          • 不合法的網站連結路徑(缺少 //

          • +
          • 欲連結的主機名稱包含不合法的字元;底線這個字元是不被允許存在的。

          • +
          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_LIFETIME_EXP squid-5.9/errors/zh-hant/ERR_LIFETIME_EXP --- squid-5.8/errors/zh-hant/ERR_LIFETIME_EXP 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_LIFETIME_EXP 2023-05-01 10:42:39.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          超過連線等待時限

          +
          + +

          快取伺服器已終止您的連線要求,因為已經超過連線等待時限。

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_NO_RELAY squid-5.9/errors/zh-hant/ERR_NO_RELAY --- squid-5.8/errors/zh-hant/ERR_NO_RELAY 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_NO_RELAY 2023-05-01 10:42:39.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          不提供 Wais(廣域資訊伺服器)轉接

          +
          + +

          There is no WAIS Relay host defined for this Cache! Yell at the administrator.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_ONLY_IF_CACHED_MISS squid-5.9/errors/zh-hant/ERR_ONLY_IF_CACHED_MISS --- squid-5.8/errors/zh-hant/ERR_ONLY_IF_CACHED_MISS 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_ONLY_IF_CACHED_MISS 2023-05-01 10:42:39.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          您要求的文件並未存在於本快取伺服器上,而且您設定了 only-if-cached 指令。

          +
          + +

          您送出了一個包含 only-if-cached 快取控制指令的連結要求。而文件並未存在快取伺服器中,或者 這個連線要求被 only-if-cached 指令認定是禁用的。

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/error-details.txt squid-5.9/errors/zh-hant/error-details.txt --- squid-5.8/errors/zh-hant/error-details.txt 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/error-details.txt 2023-05-01 10:42:42.000000000 +1200 @@ -0,0 +1,227 @@ +name: SQUID_X509_V_ERR_INFINITE_VALIDATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Cert validation infinite loop detected" + +name: SQUID_TLS_ERR_ACCEPT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to accept a secure connection" + +name: SQUID_TLS_ERR_CONNECT +detail: "%ssl_error_descr: %ssl_lib_error" +descr: "Failed to establish a secure connection" + +name: SQUID_X509_V_ERR_DOMAIN_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate does not match domainname" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get issuer certificate" + +name: X509_V_ERR_UNABLE_TO_GET_CRL +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to get certificate CRL" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt certificate's signature" + +name: X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to decrypt CRL's signature" + +name: X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY +detail: "Unable to decode issuer (CA) public key: %ssl_ca_name" +descr: "Unable to decode issuer public key" + +name: X509_V_ERR_CERT_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate signature failure" + +name: X509_V_ERR_CRL_SIGNATURE_FAILURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL signature failure" + +name: X509_V_ERR_CERT_NOT_YET_VALID +detail: "SSL Certficate is not valid before: %ssl_notbefore" +descr: "Certificate is not yet valid" + +name: X509_V_ERR_CERT_HAS_EXPIRED +detail: "SSL Certificate expired on: %ssl_notafter" +descr: "Certificate has expired" + +name: X509_V_ERR_CRL_NOT_YET_VALID +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL is not yet valid" + +name: X509_V_ERR_CRL_HAS_EXPIRED +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL has expired" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD +detail: "SSL Certificate has invalid start date (the 'not before' field): %ssl_subject" +descr: "Format error in certificate's notBefore field" + +name: X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD +detail: "SSL Certificate has invalid expiration date (the 'not after' field): %ssl_subject" +descr: "Format error in certificate's notAfter field" + +name: X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's lastUpdate field" + +name: X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD +detail: "%ssl_error_descr: %ssl_subject" +descr: "Format error in CRL's nextUpdate field" + +name: X509_V_ERR_OUT_OF_MEM +detail: "%ssl_error_descr" +descr: "Out of memory" + +name: X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT +detail: "Self-signed SSL Certificate: %ssl_subject" +descr: "Self signed certificate" + +name: X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN +detail: "Self-signed SSL Certificate in chain: %ssl_subject" +descr: "Self signed certificate in certificate chain" + +name: X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY +detail: "SSL Certficate error: certificate issuer (CA) not known: %ssl_ca_name" +descr: "Unable to get local issuer certificate" + +name: X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unable to verify the first certificate" + +name: X509_V_ERR_CERT_CHAIN_TOO_LONG +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate chain too long" + +name: X509_V_ERR_CERT_REVOKED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate revoked" + +name: X509_V_ERR_INVALID_CA +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Invalid CA certificate" + +name: X509_V_ERR_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Path length constraint exceeded" + +name: X509_V_ERR_INVALID_PURPOSE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported certificate purpose" + +name: X509_V_ERR_CERT_UNTRUSTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate not trusted" + +name: X509_V_ERR_CERT_REJECTED +detail: "%ssl_error_descr: %ssl_subject" +descr: "Certificate rejected" + +name: X509_V_ERR_SUBJECT_ISSUER_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Subject issuer mismatch" + +name: X509_V_ERR_AKID_SKID_MISMATCH +detail: "%ssl_error_descr: %ssl_subject" +descr: "Authority and subject key identifier mismatch" + +name: X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH +detail: "%ssl_error_descr: %ssl_ca_name" +descr: "Authority and issuer serial number mismatch" + +name: X509_V_ERR_KEYUSAGE_NO_CERTSIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "Key usage does not include certificate signing" + +name: X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER +detail: "%ssl_error_descr: %ssl_subject" +descr: "unable to get CRL issuer certificate" + +name: X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical extension" + +name: X509_V_ERR_KEYUSAGE_NO_CRL_SIGN +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include CRL signing" + +name: X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "unhandled critical CRL extension" + +name: X509_V_ERR_INVALID_NON_CA +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid non-CA certificate (has CA markings)" + +name: X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy path length constraint exceeded" + +name: X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "key usage does not include digital signature" + +name: X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED +detail: "%ssl_error_descr: %ssl_subject" +descr: "proxy certificates not allowed, please set the appropriate flag" + +name: X509_V_ERR_INVALID_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate extension" + +name: X509_V_ERR_INVALID_POLICY_EXTENSION +detail: "%ssl_error_descr: %ssl_subject" +descr: "invalid or inconsistent certificate policy extension" + +name: X509_V_ERR_NO_EXPLICIT_POLICY +detail: "%ssl_error_descr: %ssl_subject" +descr: "no explicit policy" + +name: X509_V_ERR_DIFFERENT_CRL_SCOPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Different CRL scope" + +name: X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE +detail: "%ssl_error_descr: %ssl_subject" +descr: "Unsupported extension feature" + +name: X509_V_ERR_UNNESTED_RESOURCE +detail: "%ssl_error_descr: %ssl_subject" +descr: "RFC 3779 resource not subset of parent's resources" + +name: X509_V_ERR_PERMITTED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "permitted subtree violation" + +name: X509_V_ERR_EXCLUDED_VIOLATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "excluded subtree violation" + +name: X509_V_ERR_SUBTREE_MINMAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "name constraints minimum and maximum not supported" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported name constraint type" + +name: X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name constraint syntax" + +name: X509_V_ERR_UNSUPPORTED_NAME_SYNTAX +detail: "%ssl_error_descr: %ssl_subject" +descr: "unsupported or invalid name syntax" + +name: X509_V_ERR_CRL_PATH_VALIDATION_ERROR +detail: "%ssl_error_descr: %ssl_subject" +descr: "CRL path validation error" + +name: X509_V_ERR_APPLICATION_VERIFICATION +detail: "%ssl_error_descr: %ssl_subject" +descr: "Application verification failure" diff -u -r -N squid-5.8/errors/zh-hant/ERR_PRECONDITION_FAILED squid-5.9/errors/zh-hant/ERR_PRECONDITION_FAILED --- squid-5.8/errors/zh-hant/ERR_PRECONDITION_FAILED 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_PRECONDITION_FAILED 2023-05-01 10:42:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          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.

          +
          + +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_PROTOCOL_UNKNOWN squid-5.9/errors/zh-hant/ERR_PROTOCOL_UNKNOWN --- squid-5.8/errors/zh-hant/ERR_PROTOCOL_UNKNOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_PROTOCOL_UNKNOWN 2023-05-01 10:42:40.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Unsupported Protocol

          +
          + +

          Squid does not support some access protocols. For example, the SSH protocol is currently not supported.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_READ_ERROR squid-5.9/errors/zh-hant/ERR_READ_ERROR --- squid-5.8/errors/zh-hant/ERR_READ_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_READ_ERROR 2023-05-01 10:42:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          讀取錯誤

          +
          + +

          系統回應了下列錯誤訊息:%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-5.8/errors/zh-hant/ERR_READ_TIMEOUT squid-5.9/errors/zh-hant/ERR_READ_TIMEOUT --- squid-5.8/errors/zh-hant/ERR_READ_TIMEOUT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_READ_TIMEOUT 2023-05-01 10:42:40.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          超過讀取時限

          +
          + +

          系統回應了下列錯誤訊息:%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-5.8/errors/zh-hant/ERR_SECURE_CONNECT_FAIL squid-5.9/errors/zh-hant/ERR_SECURE_CONNECT_FAIL --- squid-5.8/errors/zh-hant/ERR_SECURE_CONNECT_FAIL 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_SECURE_CONNECT_FAIL 2023-05-01 10:42:40.000000000 +1200 @@ -0,0 +1,46 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Failed to establish a secure connection to %I

          +
          + +
          +

          The system returned:

          +
          +
          %E (TLS code: %x)
          +

          %D

          +
          +
          + +

          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-5.8/errors/zh-hant/ERR_SHUTTING_DOWN squid-5.9/errors/zh-hant/ERR_SHUTTING_DOWN --- squid-5.8/errors/zh-hant/ERR_SHUTTING_DOWN 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_SHUTTING_DOWN 2023-05-01 10:42:40.000000000 +1200 @@ -0,0 +1,34 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          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-5.8/errors/zh-hant/ERR_SOCKET_FAILURE squid-5.9/errors/zh-hant/ERR_SOCKET_FAILURE --- squid-5.8/errors/zh-hant/ERR_SOCKET_FAILURE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_SOCKET_FAILURE 2023-05-01 10:42:41.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          Socket 建立失敗

          +
          + +

          系統回應了下列錯誤訊息:%E

          + +

          Squid (網路快取程式)無法建立 TCP socket,可能是因為過重的負荷導致這個問題,請重新嘗試一遍您的連結要求。

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_TOO_BIG squid-5.9/errors/zh-hant/ERR_TOO_BIG --- squid-5.8/errors/zh-hant/ERR_TOO_BIG 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_TOO_BIG 2023-05-01 10:42:41.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          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-5.8/errors/zh-hant/ERR_UNSUP_HTTPVERSION squid-5.9/errors/zh-hant/ERR_UNSUP_HTTPVERSION --- squid-5.8/errors/zh-hant/ERR_UNSUP_HTTPVERSION 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_UNSUP_HTTPVERSION 2023-05-01 10:42:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          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-5.8/errors/zh-hant/ERR_UNSUP_REQ squid-5.9/errors/zh-hant/ERR_UNSUP_REQ --- squid-5.8/errors/zh-hant/ERR_UNSUP_REQ 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_UNSUP_REQ 2023-05-01 10:42:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          尚未支援的要求方式或通訊協定

          +
          + +

          因為 Squid (網路快取程式)並未支援所有的連結要求方式在各式通訊協定上。比如說,你不能要求一個 GOPHER 的 POST 連結要求。

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_URN_RESOLVE squid-5.9/errors/zh-hant/ERR_URN_RESOLVE --- squid-5.8/errors/zh-hant/ERR_URN_RESOLVE 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_URN_RESOLVE 2023-05-01 10:42:41.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +ERROR: The requested URN could not be retrieved + + +
          +

          錯誤

          +

          URN 中的一個網址(URL)無法被傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URN: %U

          + +
          +

          無法解譯 URN

          +
          + +

          抱歉!您不能對 URNs 在 %T 上期待太多 :)

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_WRITE_ERROR squid-5.9/errors/zh-hant/ERR_WRITE_ERROR --- squid-5.8/errors/zh-hant/ERR_WRITE_ERROR 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_WRITE_ERROR 2023-05-01 10:42:42.000000000 +1200 @@ -0,0 +1,40 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          寫入錯誤

          +
          + +

          系統回應了下列錯誤訊息:%E

          + +

          An error condition occurred while writing to the network. Please retry your request.

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/errors/zh-hant/ERR_ZERO_SIZE_OBJECT squid-5.9/errors/zh-hant/ERR_ZERO_SIZE_OBJECT --- squid-5.8/errors/zh-hant/ERR_ZERO_SIZE_OBJECT 1970-01-01 12:00:00.000000000 +1200 +++ squid-5.9/errors/zh-hant/ERR_ZERO_SIZE_OBJECT 2023-05-01 10:42:42.000000000 +1200 @@ -0,0 +1,38 @@ + + + + +錯誤: 欲連結之網址(URL)無法正確的傳回 + + +
          +

          錯誤

          +

          欲連結之網址(URL)無法正確的傳回

          +
          +
          + +
          +

          The following error was encountered while trying to retrieve the URL: %U

          + +
          +

          大小為零的資料回應

          +
          + +

          您的此次連線要求,Squid(網路快取程式)並未自欲連結的網站伺服器接收到任何資料。

          + +

          Your cache administrator is %w.

          +
          +
          + +
          + + diff -u -r -N squid-5.8/include/version.h squid-5.9/include/version.h --- squid-5.8/include/version.h 2023-02-28 23:01:36.000000000 +1300 +++ squid-5.9/include/version.h 2023-05-01 10:36:05.000000000 +1200 @@ -7,7 +7,7 @@ */ #ifndef SQUID_RELEASE_TIME -#define SQUID_RELEASE_TIME 1677578480 +#define SQUID_RELEASE_TIME 1682894149 #endif /* diff -u -r -N squid-5.8/RELEASENOTES.html squid-5.9/RELEASENOTES.html --- squid-5.8/RELEASENOTES.html 2023-02-28 23:02:35.000000000 +1300 +++ squid-5.9/RELEASENOTES.html 2023-05-01 10:42:42.000000000 +1200 @@ -3,26 +3,21 @@ - Squid 5.8 release notes + Squid 5.9 release notes -

          Squid 5.8 release notes

          +

          Squid 5.9 release notes

          Squid Developers

          -
          -This document contains the release notes for version 5 of Squid. -Squid is a WWW Cache application developed by the National Laboratory -for Applied Network Research and members of the Web Caching community. -

          1. Notice

          -

          2. Major new features since Squid-4

          +

          2. Major new features since Squid--1

          -

          3. Changes to squid.conf since Squid-4

          +

          3. Changes to squid.conf since Squid--1

          -

          4. Changes to ./configure options since Squid-4

          +

          4. Changes to ./configure options since Squid--1

          • 4.1 New options @@ -62,31 +57,31 @@

            1. Notice

            -

            The Squid Team are pleased to announce the release of Squid-5.8.

            +

            The Squid Team are pleased to announce the release of Squid-5.9.

            This new release is available for download from -http://www.squid-cache.org/Versions/v5/ or the +http://www.squid-cache.org/Versions/v/ or the mirrors.

            We welcome feedback and bug reports. If you find a bug, please see -http://wiki.squid-cache.org/SquidFaq/BugReporting +https://wiki.squid-cache.org/SquidFaq/BugReporting for how to submit a report with a stack trace.

            1.1 Known issues

            Although this release is deemed good enough for use in many setups, please note the existence of -open bugs against Squid-5.

            +open bugs against Squid-.

            -

            1.2 Changes since earlier releases of Squid-5 +

            1.2 Changes since earlier releases of Squid-

            -

            The Squid-5 change history can be -viewed here.

            +

            The Squid- change history can be +viewed here.

            -

            2. Major new features since Squid-4

            +

            2. Major new features since Squid--1

            -

            Squid-5 represents a new feature release above Squid-4.

            +

            Squid- represents a new feature release above Squid--1.

            The most important of these new features are:

              @@ -237,9 +232,9 @@

              OpenSSL 3.0 uses new licensing terms.

              -

              3. Changes to squid.conf since Squid-4

              +

              3. Changes to squid.conf since Squid--1

              -

              There have been changes to Squid's configuration file since Squid-4.

              +

              There have been changes to Squid's configuration file since Squid--1.

              This section gives a thorough account of those changes in three categories:

                @@ -410,9 +405,9 @@

                -

                4. Changes to ./configure options since Squid-4

                +

                4. Changes to ./configure options since Squid--1

                -

                There have been some changes to Squid's build configuration since Squid-4.

                +

                There have been some changes to Squid's build configuration since Squid--1.

                This section gives an account of those changes in three categories:

                  @@ -473,7 +468,7 @@

                  5. Regressions since Squid-2.7

                  -

                  Some squid.conf options which were available in Squid-2.7 are not yet available in Squid-5

                  +

                  Some squid.conf options which were available in Squid-2.7 are not yet available in Squid-

                  If you need something to do then porting one of these from Squid-2 is most welcome.

                  diff -u -r -N squid-5.8/SPONSORS squid-5.9/SPONSORS --- squid-5.8/SPONSORS 2023-02-28 23:01:36.000000000 +1300 +++ squid-5.9/SPONSORS 2023-05-01 10:36:05.000000000 +1200 @@ -163,6 +163,12 @@ SGI has provided hardware donations for Squid developers. +National Laboratory for Applied Network Research + + NLANR coordinated the early development of Squid + with features for integration with the IRCache network + measurement project and High Performance Networking. + The National Science Foundation The NSF was the primary funding source for Squid development diff -u -r -N squid-5.8/src/acl/external/delayer/ext_delayer_acl.8 squid-5.9/src/acl/external/delayer/ext_delayer_acl.8 --- squid-5.8/src/acl/external/delayer/ext_delayer_acl.8 2023-02-28 23:02:39.000000000 +1300 +++ squid-5.9/src/acl/external/delayer/ext_delayer_acl.8 2023-05-01 10:42:47.000000000 +1200 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EXT_DELAYER_ACL 8" -.TH EXT_DELAYER_ACL 8 "2023-02-28" "perl v5.36.0" "User Contributed Perl Documentation" +.TH EXT_DELAYER_ACL 8 "2023-04-30" "perl v5.36.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-5.8/src/acl/external/kerberos_sid_group/ext_kerberos_sid_group_acl.8 squid-5.9/src/acl/external/kerberos_sid_group/ext_kerberos_sid_group_acl.8 --- squid-5.8/src/acl/external/kerberos_sid_group/ext_kerberos_sid_group_acl.8 2023-02-28 23:02:40.000000000 +1300 +++ squid-5.9/src/acl/external/kerberos_sid_group/ext_kerberos_sid_group_acl.8 2023-05-01 10:42:48.000000000 +1200 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EXT_KERBEROS_SID_GROUP_ACL 8" -.TH EXT_KERBEROS_SID_GROUP_ACL 8 "2023-02-28" "perl v5.36.0" "User Contributed Perl Documentation" +.TH EXT_KERBEROS_SID_GROUP_ACL 8 "2023-04-30" "perl v5.36.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-5.8/src/acl/external/SQL_session/ext_sql_session_acl.8 squid-5.9/src/acl/external/SQL_session/ext_sql_session_acl.8 --- squid-5.8/src/acl/external/SQL_session/ext_sql_session_acl.8 2023-02-28 23:02:40.000000000 +1300 +++ squid-5.9/src/acl/external/SQL_session/ext_sql_session_acl.8 2023-05-01 10:42:48.000000000 +1200 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EXT_SQL_SESSION_ACL 8" -.TH EXT_SQL_SESSION_ACL 8 "2023-02-28" "perl v5.36.0" "User Contributed Perl Documentation" +.TH EXT_SQL_SESSION_ACL 8 "2023-04-30" "perl v5.36.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-5.8/src/acl/external/wbinfo_group/ext_wbinfo_group_acl.8 squid-5.9/src/acl/external/wbinfo_group/ext_wbinfo_group_acl.8 --- squid-5.8/src/acl/external/wbinfo_group/ext_wbinfo_group_acl.8 2023-02-28 23:02:40.000000000 +1300 +++ squid-5.9/src/acl/external/wbinfo_group/ext_wbinfo_group_acl.8 2023-05-01 10:42:48.000000000 +1200 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EXT_WBINFO_GROUP_ACL 8" -.TH EXT_WBINFO_GROUP_ACL 8 "2023-02-28" "perl v5.36.0" "User Contributed Perl Documentation" +.TH EXT_WBINFO_GROUP_ACL 8 "2023-04-30" "perl v5.36.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-5.8/src/auth/basic/DB/basic_db_auth.8 squid-5.9/src/auth/basic/DB/basic_db_auth.8 --- squid-5.8/src/auth/basic/DB/basic_db_auth.8 2023-02-28 23:02:41.000000000 +1300 +++ squid-5.9/src/auth/basic/DB/basic_db_auth.8 2023-05-01 10:42:49.000000000 +1200 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BASIC_DB_AUTH 8" -.TH BASIC_DB_AUTH 8 "2023-02-28" "perl v5.36.0" "User Contributed Perl Documentation" +.TH BASIC_DB_AUTH 8 "2023-04-30" "perl v5.36.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-5.8/src/auth/basic/POP3/basic_pop3_auth.8 squid-5.9/src/auth/basic/POP3/basic_pop3_auth.8 --- squid-5.8/src/auth/basic/POP3/basic_pop3_auth.8 2023-02-28 23:02:41.000000000 +1300 +++ squid-5.9/src/auth/basic/POP3/basic_pop3_auth.8 2023-05-01 10:42:50.000000000 +1200 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BASIC_POP3_AUTH 8" -.TH BASIC_POP3_AUTH 8 "2023-02-28" "perl v5.36.0" "User Contributed Perl Documentation" +.TH BASIC_POP3_AUTH 8 "2023-04-30" "perl v5.36.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-5.8/src/client_side_reply.cc squid-5.9/src/client_side_reply.cc --- squid-5.8/src/client_side_reply.cc 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/src/client_side_reply.cc 2023-05-01 10:29:35.000000000 +1200 @@ -1336,8 +1336,7 @@ } // XXX: Should this be checked earlier? We could return above w/o checking. - if (reply->receivedBodyTooLarge(*http->request, http->out.offset - 4096)) { - /* 4096 is a margin for the HTTP headers included in out.offset */ + if (reply->receivedBodyTooLarge(*http->request, http->out.offset)) { debugs(88, 5, "clientReplyStatus: client reply body is too large"); return STREAM_FAILED; } diff -u -r -N squid-5.8/src/esi/Libxml2Parser.cc squid-5.9/src/esi/Libxml2Parser.cc --- squid-5.8/src/esi/Libxml2Parser.cc 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/src/esi/Libxml2Parser.cc 2023-05-01 10:29:35.000000000 +1200 @@ -81,7 +81,7 @@ ESILibxml2Parser::ESILibxml2Parser(ESIParserClient *aClient) : theClient (aClient) { xmlSAXHandler sax; - htmlDefaultSAXHandlerInit(); + xmlInitParser(); memset(&sax, 0, sizeof(sax)); sax.startElement = esi_startElementSAXFunc; sax.endElement = esi_endElementSAXFunc; diff -u -r -N squid-5.8/src/http/url_rewriters/LFS/url_lfs_rewrite.8 squid-5.9/src/http/url_rewriters/LFS/url_lfs_rewrite.8 --- squid-5.8/src/http/url_rewriters/LFS/url_lfs_rewrite.8 2023-02-28 23:02:42.000000000 +1300 +++ squid-5.9/src/http/url_rewriters/LFS/url_lfs_rewrite.8 2023-05-01 10:42:51.000000000 +1200 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "URL_LFS_REWRITE 8" -.TH URL_LFS_REWRITE 8 "2023-02-28" "perl v5.36.0" "User Contributed Perl Documentation" +.TH URL_LFS_REWRITE 8 "2023-04-30" "perl v5.36.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-5.8/src/ipc/mem/FlexibleArray.h squid-5.9/src/ipc/mem/FlexibleArray.h --- squid-5.8/src/ipc/mem/FlexibleArray.h 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/src/ipc/mem/FlexibleArray.h 2023-05-01 10:29:35.000000000 +1200 @@ -9,7 +9,7 @@ #ifndef SQUID_IPC_MEM_FLEXIBLE_ARRAY_H #define SQUID_IPC_MEM_FLEXIBLE_ARRAY_H -// sometimes required for placement-new operator to be declared +#include #include namespace Ipc @@ -27,20 +27,15 @@ { public: explicit FlexibleArray(const int capacity) { - if (capacity > 1) // the first item is initialized automatically - new (raw()+1) Item[capacity-1]; + new (raw()) Item[capacity]; } - Item &operator [](const int idx) { return items[idx]; } - const Item &operator [](const int idx) const { return items[idx]; } + Item &operator [](const int idx) { return *(raw() + idx); } - //const Item *operator ()() const { return items; } - //Item *operator ()() { return items; } - - Item *raw() { return items; } + Item *raw() { return reinterpret_cast(&start_); } private: - Item items[1]; // ensures proper alignment of array elements + alignas(Item) char start_; ///< the first byte of the first array item }; } // namespace Mem diff -u -r -N squid-5.8/src/log/DB/log_db_daemon.8 squid-5.9/src/log/DB/log_db_daemon.8 --- squid-5.8/src/log/DB/log_db_daemon.8 2023-02-28 23:02:43.000000000 +1300 +++ squid-5.9/src/log/DB/log_db_daemon.8 2023-05-01 10:42:51.000000000 +1200 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "LOG_DB_DAEMON 8" -.TH LOG_DB_DAEMON 8 "2023-02-28" "perl v5.36.0" "User Contributed Perl Documentation" +.TH LOG_DB_DAEMON 8 "2023-04-30" "perl v5.36.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-5.8/src/Makefile.am squid-5.9/src/Makefile.am --- squid-5.8/src/Makefile.am 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/src/Makefile.am 2023-05-01 10:29:35.000000000 +1200 @@ -1202,6 +1202,7 @@ tests/stub_libeui.cc \ tests/stub_libformat.cc \ tests/stub_libicmp.cc \ + tests/stub_libip.cc \ tests/stub_liblog.cc \ tests/stub_libmgr.cc \ tests/stub_libsecurity.cc \ @@ -1240,7 +1241,6 @@ parser/libparser.la \ libsquid.la \ comm/libcomm.la \ - ip/libip.la \ fs/libfs.la \ $(COMMON_LIBS) \ $(REPL_OBJS) \ @@ -1378,6 +1378,7 @@ tests/stub_libeui.cc \ tests/stub_libformat.cc \ tests/stub_libicmp.cc \ + tests/stub_libip.cc \ tests/stub_liblog.cc \ tests/stub_libsecurity.cc \ log/access_log.h \ @@ -1421,7 +1422,6 @@ acl/libstate.la \ acl/libapi.la \ libsquid.la \ - ip/libip.la \ fs/libfs.la \ mgr/libmgr.la \ $(REPL_OBJS) \ @@ -1434,7 +1434,6 @@ comm/libcomm.la \ dns/libdns.la \ base/libbase.la \ - ip/libip.la \ mem/libmem.la \ store/libstore.la \ $(ADAPTATION_LIBS) \ @@ -1727,6 +1726,7 @@ tests/stub_libeui.cc \ tests/stub_libformat.cc \ tests/stub_libicmp.cc \ + tests/stub_libip.cc \ tests/stub_liblog.cc \ tests/stub_libsecurity.cc \ tests/stub_libstore.cc \ @@ -1772,7 +1772,6 @@ acl/libacls.la \ acl/libstate.la \ comm/libcomm.la \ - ip/libip.la \ fs/libfs.la \ ipc/libipc.la \ $(REPL_OBJS) \ diff -u -r -N squid-5.8/src/Makefile.in squid-5.9/src/Makefile.in --- squid-5.8/src/Makefile.in 2023-02-28 23:01:27.000000000 +1300 +++ squid-5.9/src/Makefile.in 2023-05-01 10:35:56.000000000 +1200 @@ -727,11 +727,11 @@ tests/stub_libauth.cc tests/stub_libauth_acls.cc \ tests/stub_liberror.cc tests/stub_libeui.cc \ tests/stub_libformat.cc tests/stub_libicmp.cc \ - tests/stub_liblog.cc tests/stub_libsecurity.cc \ - tests/stub_libstore.cc log/access_log.h mem_node.cc \ - tests/stub_mime.cc mime.h tests/stub_neighbors.cc \ - tests/stub_pconn.cc refresh.cc refresh.h repl_modules.h \ - tests/stub_stat.cc stmem.cc store.cc \ + tests/stub_libip.cc tests/stub_liblog.cc \ + tests/stub_libsecurity.cc tests/stub_libstore.cc \ + log/access_log.h mem_node.cc tests/stub_mime.cc mime.h \ + tests/stub_neighbors.cc tests/stub_pconn.cc refresh.cc \ + refresh.h repl_modules.h tests/stub_stat.cc stmem.cc store.cc \ tests/stub_store_client.cc store_io.cc store_key_md5.cc \ store_key_md5.h tests/stub_store_rebuild.cc store_rebuild.h \ tests/stub_store_stats.cc store_swapmeta.cc store_swapout.cc \ @@ -775,13 +775,14 @@ tests/stub_libauth.$(OBJEXT) tests/stub_libauth_acls.$(OBJEXT) \ tests/stub_liberror.$(OBJEXT) tests/stub_libeui.$(OBJEXT) \ tests/stub_libformat.$(OBJEXT) tests/stub_libicmp.$(OBJEXT) \ - tests/stub_liblog.$(OBJEXT) tests/stub_libsecurity.$(OBJEXT) \ - tests/stub_libstore.$(OBJEXT) mem_node.$(OBJEXT) \ - tests/stub_mime.$(OBJEXT) tests/stub_neighbors.$(OBJEXT) \ - tests/stub_pconn.$(OBJEXT) refresh.$(OBJEXT) \ - tests/stub_stat.$(OBJEXT) stmem.$(OBJEXT) store.$(OBJEXT) \ - tests/stub_store_client.$(OBJEXT) store_io.$(OBJEXT) \ - store_key_md5.$(OBJEXT) tests/stub_store_rebuild.$(OBJEXT) \ + tests/stub_libip.$(OBJEXT) tests/stub_liblog.$(OBJEXT) \ + tests/stub_libsecurity.$(OBJEXT) tests/stub_libstore.$(OBJEXT) \ + mem_node.$(OBJEXT) tests/stub_mime.$(OBJEXT) \ + tests/stub_neighbors.$(OBJEXT) tests/stub_pconn.$(OBJEXT) \ + refresh.$(OBJEXT) tests/stub_stat.$(OBJEXT) stmem.$(OBJEXT) \ + store.$(OBJEXT) tests/stub_store_client.$(OBJEXT) \ + store_io.$(OBJEXT) store_key_md5.$(OBJEXT) \ + tests/stub_store_rebuild.$(OBJEXT) \ tests/stub_store_stats.$(OBJEXT) store_swapmeta.$(OBJEXT) \ store_swapout.$(OBJEXT) tests/stub_time.$(OBJEXT) \ tests/stub_tools.$(OBJEXT) wordlist.$(OBJEXT) @@ -792,7 +793,7 @@ tests_testDiskIO_DEPENDENCIES = libsquid.la http/libhttp.la \ parser/libparser.la SquidConfig.o CommCalls.o \ ident/libident.la acl/libacls.la acl/libstate.la \ - comm/libcomm.la ip/libip.la fs/libfs.la ipc/libipc.la \ + comm/libcomm.la fs/libfs.la ipc/libipc.la \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ DiskIO/libdiskio.la acl/libapi.la anyp/libanyp.la \ mgr/libmgr.la $(SSL_LIBS) ipc/libipc.la dns/libdns.la \ @@ -1444,7 +1445,7 @@ tests/stub_ipcache.cc tests/stub_libanyp.cc \ tests/stub_libauth.cc tests/stub_liberror.cc \ tests/stub_libeui.cc tests/stub_libformat.cc \ - tests/stub_libicmp.cc tests/stub_liblog.cc \ + tests/stub_libicmp.cc tests/stub_libip.cc tests/stub_liblog.cc \ tests/stub_libmgr.cc tests/stub_libsecurity.cc \ log/access_log.h mem_node.cc tests/stub_mime.cc mime.h \ tests/stub_neighbors.cc tests/stub_pconn.cc repl_modules.h \ @@ -1512,6 +1513,7 @@ @ENABLE_FS_ROCK_TRUE@ tests/stub_libeui.$(OBJEXT) \ @ENABLE_FS_ROCK_TRUE@ tests/stub_libformat.$(OBJEXT) \ @ENABLE_FS_ROCK_TRUE@ tests/stub_libicmp.$(OBJEXT) \ +@ENABLE_FS_ROCK_TRUE@ tests/stub_libip.$(OBJEXT) \ @ENABLE_FS_ROCK_TRUE@ tests/stub_liblog.$(OBJEXT) \ @ENABLE_FS_ROCK_TRUE@ tests/stub_libmgr.$(OBJEXT) \ @ENABLE_FS_ROCK_TRUE@ tests/stub_libsecurity.$(OBJEXT) \ @@ -1537,7 +1539,7 @@ $(nodist_tests_testRock_OBJECTS) @ENABLE_FS_ROCK_TRUE@tests_testRock_DEPENDENCIES = http/libhttp.la \ @ENABLE_FS_ROCK_TRUE@ parser/libparser.la libsquid.la \ -@ENABLE_FS_ROCK_TRUE@ comm/libcomm.la ip/libip.la fs/libfs.la \ +@ENABLE_FS_ROCK_TRUE@ comm/libcomm.la fs/libfs.la \ @ENABLE_FS_ROCK_TRUE@ $(am__DEPENDENCIES_1) DiskIO/libdiskio.la \ @ENABLE_FS_ROCK_TRUE@ acl/libacls.la acl/libapi.la \ @ENABLE_FS_ROCK_TRUE@ acl/libstate.la anyp/libanyp.la \ @@ -1805,10 +1807,11 @@ tests/stub_libanyp.cc tests/stub_libauth.cc \ tests/stub_liberror.cc tests/stub_libeui.cc \ tests/stub_libformat.cc tests/stub_libicmp.cc \ - tests/stub_liblog.cc tests/stub_libsecurity.cc \ - log/access_log.h mem_node.cc tests/stub_mime.cc mime.h \ - tests/stub_neighbors.cc tests/stub_pconn.cc refresh.cc \ - refresh.h repl_modules.h tests/stub_stat.cc stmem.cc store.cc \ + tests/stub_libip.cc tests/stub_liblog.cc \ + tests/stub_libsecurity.cc log/access_log.h mem_node.cc \ + tests/stub_mime.cc mime.h tests/stub_neighbors.cc \ + tests/stub_pconn.cc refresh.cc refresh.h repl_modules.h \ + tests/stub_stat.cc stmem.cc store.cc \ tests/stub_store_client.cc store_io.cc store_key_md5.cc \ store_key_md5.h tests/stub_store_rebuild.cc store_rebuild.h \ tests/stub_store_stats.cc store_swapmeta.cc store_swapout.cc \ @@ -1873,6 +1876,7 @@ @ENABLE_FS_UFS_TRUE@ tests/stub_libeui.$(OBJEXT) \ @ENABLE_FS_UFS_TRUE@ tests/stub_libformat.$(OBJEXT) \ @ENABLE_FS_UFS_TRUE@ tests/stub_libicmp.$(OBJEXT) \ +@ENABLE_FS_UFS_TRUE@ tests/stub_libip.$(OBJEXT) \ @ENABLE_FS_UFS_TRUE@ tests/stub_liblog.$(OBJEXT) \ @ENABLE_FS_UFS_TRUE@ tests/stub_libsecurity.$(OBJEXT) \ @ENABLE_FS_UFS_TRUE@ mem_node.$(OBJEXT) \ @@ -1899,12 +1903,12 @@ @ENABLE_FS_UFS_TRUE@ parser/libparser.la CommCalls.o \ @ENABLE_FS_UFS_TRUE@ ident/libident.la acl/libacls.la \ @ENABLE_FS_UFS_TRUE@ acl/libstate.la acl/libapi.la libsquid.la \ -@ENABLE_FS_UFS_TRUE@ ip/libip.la fs/libfs.la mgr/libmgr.la \ +@ENABLE_FS_UFS_TRUE@ fs/libfs.la mgr/libmgr.la \ @ENABLE_FS_UFS_TRUE@ $(am__DEPENDENCIES_1) acl/libacls.la \ @ENABLE_FS_UFS_TRUE@ DiskIO/libdiskio.la acl/libapi.la \ @ENABLE_FS_UFS_TRUE@ anyp/libanyp.la $(SSL_LIBS) ipc/libipc.la \ @ENABLE_FS_UFS_TRUE@ comm/libcomm.la dns/libdns.la \ -@ENABLE_FS_UFS_TRUE@ base/libbase.la ip/libip.la mem/libmem.la \ +@ENABLE_FS_UFS_TRUE@ base/libbase.la mem/libmem.la \ @ENABLE_FS_UFS_TRUE@ store/libstore.la $(am__DEPENDENCIES_1) \ @ENABLE_FS_UFS_TRUE@ sbuf/libsbuf.la \ @ENABLE_FS_UFS_TRUE@ $(top_builddir)/lib/libmisccontainers.la \ @@ -2241,8 +2245,9 @@ tests/$(DEPDIR)/stub_libeui.Po \ tests/$(DEPDIR)/stub_libformat.Po \ tests/$(DEPDIR)/stub_libhttp.Po \ - tests/$(DEPDIR)/stub_libicmp.Po tests/$(DEPDIR)/stub_liblog.Po \ - tests/$(DEPDIR)/stub_libmem.Po tests/$(DEPDIR)/stub_libmgr.Po \ + tests/$(DEPDIR)/stub_libicmp.Po tests/$(DEPDIR)/stub_libip.Po \ + tests/$(DEPDIR)/stub_liblog.Po tests/$(DEPDIR)/stub_libmem.Po \ + tests/$(DEPDIR)/stub_libmgr.Po \ tests/$(DEPDIR)/stub_libsecurity.Po \ tests/$(DEPDIR)/stub_libsslsquid.Po \ tests/$(DEPDIR)/stub_libstore.Po \ @@ -3729,6 +3734,7 @@ @ENABLE_FS_ROCK_TRUE@ tests/stub_libeui.cc \ @ENABLE_FS_ROCK_TRUE@ tests/stub_libformat.cc \ @ENABLE_FS_ROCK_TRUE@ tests/stub_libicmp.cc \ +@ENABLE_FS_ROCK_TRUE@ tests/stub_libip.cc \ @ENABLE_FS_ROCK_TRUE@ tests/stub_liblog.cc \ @ENABLE_FS_ROCK_TRUE@ tests/stub_libmgr.cc \ @ENABLE_FS_ROCK_TRUE@ tests/stub_libsecurity.cc \ @@ -3769,7 +3775,6 @@ @ENABLE_FS_ROCK_TRUE@ parser/libparser.la \ @ENABLE_FS_ROCK_TRUE@ libsquid.la \ @ENABLE_FS_ROCK_TRUE@ comm/libcomm.la \ -@ENABLE_FS_ROCK_TRUE@ ip/libip.la \ @ENABLE_FS_ROCK_TRUE@ fs/libfs.la \ @ENABLE_FS_ROCK_TRUE@ $(COMMON_LIBS) \ @ENABLE_FS_ROCK_TRUE@ $(REPL_OBJS) \ @@ -3898,6 +3903,7 @@ @ENABLE_FS_UFS_TRUE@ tests/stub_libeui.cc \ @ENABLE_FS_UFS_TRUE@ tests/stub_libformat.cc \ @ENABLE_FS_UFS_TRUE@ tests/stub_libicmp.cc \ +@ENABLE_FS_UFS_TRUE@ tests/stub_libip.cc \ @ENABLE_FS_UFS_TRUE@ tests/stub_liblog.cc \ @ENABLE_FS_UFS_TRUE@ tests/stub_libsecurity.cc \ @ENABLE_FS_UFS_TRUE@ log/access_log.h \ @@ -3943,7 +3949,6 @@ @ENABLE_FS_UFS_TRUE@ acl/libstate.la \ @ENABLE_FS_UFS_TRUE@ acl/libapi.la \ @ENABLE_FS_UFS_TRUE@ libsquid.la \ -@ENABLE_FS_UFS_TRUE@ ip/libip.la \ @ENABLE_FS_UFS_TRUE@ fs/libfs.la \ @ENABLE_FS_UFS_TRUE@ mgr/libmgr.la \ @ENABLE_FS_UFS_TRUE@ $(REPL_OBJS) \ @@ -3956,7 +3961,6 @@ @ENABLE_FS_UFS_TRUE@ comm/libcomm.la \ @ENABLE_FS_UFS_TRUE@ dns/libdns.la \ @ENABLE_FS_UFS_TRUE@ base/libbase.la \ -@ENABLE_FS_UFS_TRUE@ ip/libip.la \ @ENABLE_FS_UFS_TRUE@ mem/libmem.la \ @ENABLE_FS_UFS_TRUE@ store/libstore.la \ @ENABLE_FS_UFS_TRUE@ $(ADAPTATION_LIBS) \ @@ -4238,6 +4242,7 @@ tests/stub_libeui.cc \ tests/stub_libformat.cc \ tests/stub_libicmp.cc \ + tests/stub_libip.cc \ tests/stub_liblog.cc \ tests/stub_libsecurity.cc \ tests/stub_libstore.cc \ @@ -4285,7 +4290,6 @@ acl/libacls.la \ acl/libstate.la \ comm/libcomm.la \ - ip/libip.la \ fs/libfs.la \ ipc/libipc.la \ $(REPL_OBJS) \ @@ -6229,6 +6233,8 @@ tests/$(DEPDIR)/$(am__dirstamp) tests/stub_libicmp.$(OBJEXT): tests/$(am__dirstamp) \ tests/$(DEPDIR)/$(am__dirstamp) +tests/stub_libip.$(OBJEXT): tests/$(am__dirstamp) \ + tests/$(DEPDIR)/$(am__dirstamp) tests/stub_liblog.$(OBJEXT): tests/$(am__dirstamp) \ tests/$(DEPDIR)/$(am__dirstamp) tests/stub_mime.$(OBJEXT): tests/$(am__dirstamp) \ @@ -6675,6 +6681,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/stub_libformat.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/stub_libhttp.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/stub_libicmp.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/stub_libip.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/stub_liblog.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/stub_libmem.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/stub_libmgr.Po@am__quote@ # am--include-marker @@ -7670,6 +7677,7 @@ -rm -f tests/$(DEPDIR)/stub_libformat.Po -rm -f tests/$(DEPDIR)/stub_libhttp.Po -rm -f tests/$(DEPDIR)/stub_libicmp.Po + -rm -f tests/$(DEPDIR)/stub_libip.Po -rm -f tests/$(DEPDIR)/stub_liblog.Po -rm -f tests/$(DEPDIR)/stub_libmem.Po -rm -f tests/$(DEPDIR)/stub_libmgr.Po @@ -8002,6 +8010,7 @@ -rm -f tests/$(DEPDIR)/stub_libformat.Po -rm -f tests/$(DEPDIR)/stub_libhttp.Po -rm -f tests/$(DEPDIR)/stub_libicmp.Po + -rm -f tests/$(DEPDIR)/stub_libip.Po -rm -f tests/$(DEPDIR)/stub_liblog.Po -rm -f tests/$(DEPDIR)/stub_libmem.Po -rm -f tests/$(DEPDIR)/stub_libmgr.Po diff -u -r -N squid-5.8/src/mem/PoolingAllocator.h squid-5.9/src/mem/PoolingAllocator.h --- squid-5.8/src/mem/PoolingAllocator.h 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/src/mem/PoolingAllocator.h 2023-05-01 10:29:35.000000000 +1200 @@ -1,10 +1,10 @@ /* -+ * Copyright (C) 1996-2023 The Squid Software Foundation and contributors -+ * -+ * Squid software is distributed under GPLv2+ license and includes -+ * contributions from numerous individuals and organizations. -+ * Please see the COPYING and CONTRIBUTORS files for details. -+ */ + * Copyright (C) 1996-2023 The Squid Software Foundation and contributors + * + * Squid software is distributed under GPLv2+ license and includes + * contributions from numerous individuals and organizations. + * Please see the COPYING and CONTRIBUTORS files for details. + */ #ifndef SQUID_MEM_POOLINGALLOCATOR_H #define SQUID_MEM_POOLINGALLOCATOR_H diff -u -r -N squid-5.8/src/neighbors.cc squid-5.9/src/neighbors.cc --- squid-5.8/src/neighbors.cc 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/src/neighbors.cc 2023-05-01 10:29:35.000000000 +1200 @@ -605,7 +605,6 @@ int i; int reqnum = 0; int flags; - int queries_sent = 0; int peers_pinged = 0; int parent_timeout = 0, parent_exprep = 0; int sibling_timeout = 0, sibling_exprep = 0; @@ -681,8 +680,6 @@ } } - ++queries_sent; - ++ p->stats.pings_sent; if (p->type == PEER_MULTICAST) { diff -u -r -N squid-5.8/src/security/cert_validators/fake/security_fake_certverify.8 squid-5.9/src/security/cert_validators/fake/security_fake_certverify.8 --- squid-5.8/src/security/cert_validators/fake/security_fake_certverify.8 2023-02-28 23:02:43.000000000 +1300 +++ squid-5.9/src/security/cert_validators/fake/security_fake_certverify.8 2023-05-01 10:42:51.000000000 +1200 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SECURITY_FAKE_CERTVERIFY 8" -.TH SECURITY_FAKE_CERTVERIFY 8 "2023-02-28" "perl v5.36.0" "User Contributed Perl Documentation" +.TH SECURITY_FAKE_CERTVERIFY 8 "2023-04-30" "perl v5.36.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-5.8/src/store/id_rewriters/file/storeid_file_rewrite.8 squid-5.9/src/store/id_rewriters/file/storeid_file_rewrite.8 --- squid-5.8/src/store/id_rewriters/file/storeid_file_rewrite.8 2023-02-28 23:02:40.000000000 +1300 +++ squid-5.9/src/store/id_rewriters/file/storeid_file_rewrite.8 2023-05-01 10:42:49.000000000 +1200 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "STOREID_FILE_REWRITE 8" -.TH STOREID_FILE_REWRITE 8 "2023-02-28" "perl v5.36.0" "User Contributed Perl Documentation" +.TH STOREID_FILE_REWRITE 8 "2023-04-30" "perl v5.36.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-5.8/src/tests/stub_liberror.cc squid-5.9/src/tests/stub_liberror.cc --- squid-5.8/src/tests/stub_liberror.cc 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/src/tests/stub_liberror.cc 2023-05-01 10:29:35.000000000 +1200 @@ -1,3 +1,11 @@ +/* + * Copyright (C) 1996-2023 The Squid Software Foundation and contributors + * + * Squid software is distributed under GPLv2+ license and includes + * contributions from numerous individuals and organizations. + * Please see the COPYING and CONTRIBUTORS files for details. + */ + #include "squid.h" #include "error/Error.h" #include "sbuf/SBuf.h" diff -u -r -N squid-5.8/src/tests/stub_libip.cc squid-5.9/src/tests/stub_libip.cc --- squid-5.8/src/tests/stub_libip.cc 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/src/tests/stub_libip.cc 2023-05-01 10:29:35.000000000 +1200 @@ -12,34 +12,102 @@ #define STUB_API "ip/libip.la" #include "tests/STUB.h" +#include "ip/Address.h" +Ip::Address::Address(const struct in_addr &) STUB +Ip::Address::Address(const struct sockaddr_in &) STUB +Ip::Address::Address(const struct in6_addr &) STUB +Ip::Address::Address(const struct sockaddr_in6 &) STUB +Ip::Address::Address(const struct hostent &) STUB +Ip::Address::Address(const struct addrinfo &) STUB +Ip::Address::Address(const char*) STUB +Ip::Address& Ip::Address::operator =(struct sockaddr_in const &) STUB_RETVAL(*this) +Ip::Address& Ip::Address::operator =(struct sockaddr_storage const &) STUB_RETVAL(*this) +Ip::Address& Ip::Address::operator =(struct in_addr const &) STUB_RETVAL(*this) +Ip::Address& Ip::Address::operator =(struct in6_addr const &) STUB_RETVAL(*this) +Ip::Address& Ip::Address::operator =(struct sockaddr_in6 const &) STUB_RETVAL(*this) +bool Ip::Address::operator =(const struct hostent &) STUB_RETVAL(false) +bool Ip::Address::operator =(const struct addrinfo &) STUB_RETVAL(false) +bool Ip::Address::operator =(const char *) STUB_RETVAL(false) +bool Ip::Address::operator ==(Ip::Address const &) const STUB_RETVAL(false) +bool Ip::Address::operator !=(Ip::Address const &) const STUB_RETVAL(false) +bool Ip::Address::operator >=(Ip::Address const &) const STUB_RETVAL(false) +bool Ip::Address::operator <=(Ip::Address const &) const STUB_RETVAL(false) +bool Ip::Address::operator >(Ip::Address const &) const STUB_RETVAL(false) +bool Ip::Address::operator <(Ip::Address const &) const STUB_RETVAL(false) +bool Ip::Address::isIPv4() const STUB_RETVAL(false) +bool Ip::Address::isIPv6() const STUB_RETVAL(false) +bool Ip::Address::isSockAddr() const STUB_RETVAL(false) +bool Ip::Address::isAnyAddr() const STUB_RETVAL(false) +bool Ip::Address::isNoAddr() const STUB_RETVAL(false) +bool Ip::Address::isLocalhost() const STUB_RETVAL(false) +bool Ip::Address::isSiteLocal6() const STUB_RETVAL(false) +bool Ip::Address::isSiteLocalAuto() const STUB_RETVAL(false) +unsigned short Ip::Address::port() const STUB +unsigned short Ip::Address::port(unsigned short) STUB +void Ip::Address::setAnyAddr() STUB +void Ip::Address::setNoAddr() STUB +void Ip::Address::setLocalhost() STUB +void Ip::Address::setEmpty() STUB_NOP // NOP for default constructor +bool Ip::Address::setIPv4() STUB_RETVAL(false) +int Ip::Address::cidr() const STUB_RETVAL(0) +int Ip::Address::applyMask(const Ip::Address &) STUB_RETVAL(0) +bool Ip::Address::applyMask(const unsigned int, int) STUB_RETVAL(false) +void Ip::Address::applyClientMask(const Ip::Address &) STUB +char* Ip::Address::toStr(char *, const unsigned int, int) const STUB_RETVAL(nullptr) +char* Ip::Address::toUrl(char *, unsigned int) const STUB_RETVAL(nullptr) +unsigned int Ip::Address::toHostStr(char *, const unsigned int) const STUB_RETVAL(0) +bool Ip::Address::fromHost(const char *) STUB_RETVAL(false) +bool Ip::Address::getReverseString(char [MAX_IPSTRLEN], int) const STUB_RETVAL(false) +int Ip::Address::matchIPAddr(const Ip::Address &) const STUB_RETVAL(0) +int Ip::Address::compareWhole(const Ip::Address &) const STUB_RETVAL(0) +void Ip::Address::getAddrInfo(struct addrinfo *&, int) const STUB +void Ip::Address::FreeAddr(struct addrinfo *&) STUB +void Ip::Address::InitAddr(struct addrinfo *&) STUB +bool Ip::Address::GetHostByName(const char *) STUB_RETVAL(false) +void Ip::Address::getSockAddr(struct sockaddr_storage &, const int) const STUB +void Ip::Address::getSockAddr(struct sockaddr_in &) const STUB +bool Ip::Address::getInAddr(struct in_addr &) const STUB_RETVAL(false) +void Ip::Address::getSockAddr(struct sockaddr_in6 &) const STUB +void Ip::Address::getInAddr(struct in6_addr &) const STUB +void parse_IpAddress_list_token(Ip::Address_list **, char *) STUB + +//#include "ip/forward.h" + #include "ip/QosConfig.h" -namespace Ip -{ -namespace Qos -{ -void getTosFromServer(fde *, const int) { -#if USE_QOS_TOS - STUB -#endif -} -void getNfmarkFromServer(const fde *, const fde *, const int) { -#if USE_QOS_NFMARK - STUB -#endif -} -#if USE_QOS_NFMARK -int GetNfMarkCallback(enum nf_conntrack_msg_type, struct nf_conntrack *, void *) STUB_RETVAL(-1) -#endif -tos_t doTosLocalMiss(const int, const hier_code) STUB_RETVAL(-1) -int doNfmarkLocalMiss(const int, const hier_code) STUB_RETVAL(-1) -int doTosLocalHit(const int) STUB_RETVAL(-1) -int doNfmarkLocalHit(const int) STUB_RETVAL(-1) -void parseConfigLine() STUB -void dumpConfigLine(char *, const char *) STUB - -Config::Config() {STUB} -bool Config::isAclNfmarkActive() const STUB_RETVAL(false) -bool Config::isAclTosActive() const STUB_RETVAL(false) -} -} +CBDATA_CLASS_INIT(acl_tos); +acl_tos::~acl_tos() STUB +CBDATA_CLASS_INIT(acl_nfmark); +acl_nfmark::~acl_nfmark() STUB +void Ip::Qos::getTosFromServer(const Comm::ConnectionPointer &, fde *) STUB +nfmark_t Ip::Qos::getNfConnmark(const Comm::ConnectionPointer &, const ConnectionDirection) STUB_RETVAL(-1) +bool Ip::Qos::setNfConnmark(Comm::ConnectionPointer &, const ConnectionDirection, const Ip::NfMarkConfig &) STUB_RETVAL(false) +int Ip::Qos::doTosLocalMiss(const Comm::ConnectionPointer &, const hier_code) STUB_RETVAL(-1) +int Ip::Qos::doNfmarkLocalMiss(const Comm::ConnectionPointer &, const hier_code) STUB_RETVAL(-1) +int Ip::Qos::doTosLocalHit(const Comm::ConnectionPointer &) STUB_RETVAL(-1) +int Ip::Qos::doNfmarkLocalHit(const Comm::ConnectionPointer &) STUB_RETVAL(-1) +int Ip::Qos::setSockTos(const Comm::ConnectionPointer &, tos_t) STUB_RETVAL(-1) +int Ip::Qos::setSockTos(const int, tos_t, int) STUB_RETVAL(-1) +int Ip::Qos::setSockNfmark(const Comm::ConnectionPointer &, nfmark_t) STUB_RETVAL(-1) +int Ip::Qos::setSockNfmark(const int, nfmark_t) STUB_RETVAL(-1) +Ip::Qos::Config::Config() STUB_NOP +void Ip::Qos::Config::parseConfigLine() STUB +void Ip::Qos::Config::dumpConfigLine(char *, const char *) const STUB +bool Ip::Qos::Config::isAclNfmarkActive() const STUB_RETVAL(false) +bool Ip::Qos::Config::isAclTosActive() const STUB_RETVAL(false) +Ip::Qos::Config Ip::Qos::TheConfig; + +#include "ip/Intercept.h" +bool Ip::Intercept::ProbeForTproxy(Ip::Address &) STUB_RETVAL(false) +void Ip::Intercept::StopTransparency(const char *) STUB +bool Ip::Intercept::Lookup(const Comm::ConnectionPointer &newConn, const Comm::ConnectionPointer &listenConn) STUB_RETVAL(false) +Ip::Intercept Ip::Interceptor; + +#include "ip/NfMarkConfig.h" +Ip::NfMarkConfig Ip::NfMarkConfig::Parse(const SBuf &) STUB_RETSTATREF(Ip::NfMarkConfig) +nfmark_t Ip::NfMarkConfig::applyToMark(nfmark_t) const STUB_RETVAL(0) +std::ostream &operator <<(std::ostream &os, Ip::NfMarkConfig) STUB_RETVAL(os) + +#include "ip/tools.h" +void Ip::ProbeTransport() STUB +int Ip::EnableIpv6 = 0; diff -u -r -N squid-5.8/test-suite/squidconf/bug4832 squid-5.9/test-suite/squidconf/bug4832 --- squid-5.8/test-suite/squidconf/bug4832 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/test-suite/squidconf/bug4832 2023-05-01 10:29:35.000000000 +1200 @@ -1,2 +1,9 @@ +## Copyright (C) 1996-2023 The Squid Software Foundation and contributors +## +## Squid software is distributed under GPLv2+ license and includes +## contributions from numerous individuals and organizations. +## Please see the COPYING and CONTRIBUTORS files for details. +## + auth_param basic /dev/null auth_schemes basic all diff -u -r -N squid-5.8/test-suite/squidconf/mgr_passwd squid-5.9/test-suite/squidconf/mgr_passwd --- squid-5.8/test-suite/squidconf/mgr_passwd 2023-02-28 23:01:10.000000000 +1300 +++ squid-5.9/test-suite/squidconf/mgr_passwd 2023-05-01 10:29:35.000000000 +1200 @@ -1,4 +1,4 @@ -# Copyright (C) 1996-2023 The Squid Software Foundation and contributors +## Copyright (C) 1996-2023 The Squid Software Foundation and contributors ## ## Squid software is distributed under GPLv2+ license and includes ## contributions from numerous individuals and organizations. diff -u -r -N squid-5.8/tools/helper-mux/helper-mux.8 squid-5.9/tools/helper-mux/helper-mux.8 --- squid-5.8/tools/helper-mux/helper-mux.8 2023-02-28 23:02:44.000000000 +1300 +++ squid-5.9/tools/helper-mux/helper-mux.8 2023-05-01 10:42:52.000000000 +1200 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "HELPER-MUX 8" -.TH HELPER-MUX 8 "2023-02-28" "perl v5.36.0" "User Contributed Perl Documentation" +.TH HELPER-MUX 8 "2023-04-30" "perl v5.36.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