diff -pruN 1.24.0-1/ABOUT-NLS 1.26.0-0ubuntu1/ABOUT-NLS
--- 1.24.0-1/ABOUT-NLS	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/ABOUT-NLS	2021-08-05 19:45:15.000000000 +0000
@@ -0,0 +1 @@
+<https://www.gnu.org/software/gettext/manual/html_node/Users.html>
diff -pruN 1.24.0-1/aclocal.m4 1.26.0-0ubuntu1/aclocal.m4
--- 1.24.0-1/aclocal.m4	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/aclocal.m4	2021-08-05 19:45:26.000000000 +0000
@@ -0,0 +1,2273 @@
+# generated automatically by aclocal 1.16.2 -*- Autoconf -*-
+
+# Copyright (C) 1996-2020 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 program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
+m4_ifndef([AC_AUTOCONF_VERSION],
+  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
+m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
+[m4_warning([this file was generated for autoconf 2.69.
+You have another version of autoconf.  It may work, but is not guaranteed to.
+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'.])])
+
+# ===========================================================================
+#      https://www.gnu.org/software/autoconf-archive/ax_append_flag.html
+# ===========================================================================
+#
+# SYNOPSIS
+#
+#   AX_APPEND_FLAG(FLAG, [FLAGS-VARIABLE])
+#
+# DESCRIPTION
+#
+#   FLAG is appended to the FLAGS-VARIABLE shell variable, with a space
+#   added in between.
+#
+#   If FLAGS-VARIABLE is not specified, the current language's flags (e.g.
+#   CFLAGS) is used.  FLAGS-VARIABLE is not changed if it already contains
+#   FLAG.  If FLAGS-VARIABLE is unset in the shell, it is set to exactly
+#   FLAG.
+#
+#   NOTE: Implementation based on AX_CFLAGS_GCC_OPTION.
+#
+# LICENSE
+#
+#   Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
+#   Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
+#
+#   Copying and distribution of this file, with or without modification, are
+#   permitted in any medium without royalty provided the copyright notice
+#   and this notice are preserved.  This file is offered as-is, without any
+#   warranty.
+
+#serial 8
+
+AC_DEFUN([AX_APPEND_FLAG],
+[dnl
+AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_SET_IF
+AS_VAR_PUSHDEF([FLAGS], [m4_default($2,_AC_LANG_PREFIX[FLAGS])])
+AS_VAR_SET_IF(FLAGS,[
+  AS_CASE([" AS_VAR_GET(FLAGS) "],
+    [*" $1 "*], [AC_RUN_LOG([: FLAGS already contains $1])],
+    [
+     AS_VAR_APPEND(FLAGS,[" $1"])
+     AC_RUN_LOG([: FLAGS="$FLAGS"])
+    ])
+  ],
+  [
+  AS_VAR_SET(FLAGS,[$1])
+  AC_RUN_LOG([: FLAGS="$FLAGS"])
+  ])
+AS_VAR_POPDEF([FLAGS])dnl
+])dnl AX_APPEND_FLAG
+
+# ===========================================================================
+#  https://www.gnu.org/software/autoconf-archive/ax_check_compile_flag.html
+# ===========================================================================
+#
+# SYNOPSIS
+#
+#   AX_CHECK_COMPILE_FLAG(FLAG, [ACTION-SUCCESS], [ACTION-FAILURE], [EXTRA-FLAGS], [INPUT])
+#
+# DESCRIPTION
+#
+#   Check whether the given FLAG works with the current language's compiler
+#   or gives an error.  (Warnings, however, are ignored)
+#
+#   ACTION-SUCCESS/ACTION-FAILURE are shell commands to execute on
+#   success/failure.
+#
+#   If EXTRA-FLAGS is defined, it is added to the current language's default
+#   flags (e.g. CFLAGS) when the check is done.  The check is thus made with
+#   the flags: "CFLAGS EXTRA-FLAGS FLAG".  This can for example be used to
+#   force the compiler to issue an error when a bad flag is given.
+#
+#   INPUT gives an alternative input source to AC_COMPILE_IFELSE.
+#
+#   NOTE: Implementation based on AX_CFLAGS_GCC_OPTION. Please keep this
+#   macro in sync with AX_CHECK_{PREPROC,LINK}_FLAG.
+#
+# LICENSE
+#
+#   Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
+#   Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
+#
+#   Copying and distribution of this file, with or without modification, are
+#   permitted in any medium without royalty provided the copyright notice
+#   and this notice are preserved.  This file is offered as-is, without any
+#   warranty.
+
+#serial 6
+
+AC_DEFUN([AX_CHECK_COMPILE_FLAG],
+[AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_IF
+AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_[]_AC_LANG_ABBREV[]flags_$4_$1])dnl
+AC_CACHE_CHECK([whether _AC_LANG compiler accepts $1], CACHEVAR, [
+  ax_check_save_flags=$[]_AC_LANG_PREFIX[]FLAGS
+  _AC_LANG_PREFIX[]FLAGS="$[]_AC_LANG_PREFIX[]FLAGS $4 $1"
+  AC_COMPILE_IFELSE([m4_default([$5],[AC_LANG_PROGRAM()])],
+    [AS_VAR_SET(CACHEVAR,[yes])],
+    [AS_VAR_SET(CACHEVAR,[no])])
+  _AC_LANG_PREFIX[]FLAGS=$ax_check_save_flags])
+AS_VAR_IF(CACHEVAR,yes,
+  [m4_default([$2], :)],
+  [m4_default([$3], :)])
+AS_VAR_POPDEF([CACHEVAR])dnl
+])dnl AX_CHECK_COMPILE_FLAGS
+
+# ===========================================================================
+#  https://www.gnu.org/software/autoconf-archive/ax_check_enable_debug.html
+# ===========================================================================
+#
+# SYNOPSIS
+#
+#   AX_CHECK_ENABLE_DEBUG([enable by default=yes/info/profile/no], [ENABLE DEBUG VARIABLES ...], [DISABLE DEBUG VARIABLES NDEBUG ...], [IS-RELEASE])
+#
+# DESCRIPTION
+#
+#   Check for the presence of an --enable-debug option to configure, with
+#   the specified default value used when the option is not present.  Return
+#   the value in the variable $ax_enable_debug.
+#
+#   Specifying 'yes' adds '-g -O0' to the compilation flags for all
+#   languages. Specifying 'info' adds '-g' to the compilation flags.
+#   Specifying 'profile' adds '-g -pg' to the compilation flags and '-pg' to
+#   the linking flags. Otherwise, nothing is added.
+#
+#   Define the variables listed in the second argument if debug is enabled,
+#   defaulting to no variables.  Defines the variables listed in the third
+#   argument if debug is disabled, defaulting to NDEBUG.  All lists of
+#   variables should be space-separated.
+#
+#   If debug is not enabled, ensure AC_PROG_* will not add debugging flags.
+#   Should be invoked prior to any AC_PROG_* compiler checks.
+#
+#   IS-RELEASE can be used to change the default to 'no' when making a
+#   release.  Set IS-RELEASE to 'yes' or 'no' as appropriate. By default, it
+#   uses the value of $ax_is_release, so if you are using the AX_IS_RELEASE
+#   macro, there is no need to pass this parameter.
+#
+#     AX_IS_RELEASE([git-directory])
+#     AX_CHECK_ENABLE_DEBUG()
+#
+# LICENSE
+#
+#   Copyright (c) 2011 Rhys Ulerich <rhys.ulerich@gmail.com>
+#   Copyright (c) 2014, 2015 Philip Withnall <philip@tecnocode.co.uk>
+#
+#   Copying and distribution of this file, with or without modification, are
+#   permitted in any medium without royalty provided the copyright notice
+#   and this notice are preserved.
+
+#serial 9
+
+AC_DEFUN([AX_CHECK_ENABLE_DEBUG],[
+    AC_BEFORE([$0],[AC_PROG_CC])dnl
+    AC_BEFORE([$0],[AC_PROG_CXX])dnl
+    AC_BEFORE([$0],[AC_PROG_F77])dnl
+    AC_BEFORE([$0],[AC_PROG_FC])dnl
+
+    AC_MSG_CHECKING(whether to enable debugging)
+
+    ax_enable_debug_default=m4_tolower(m4_normalize(ifelse([$1],,[no],[$1])))
+    ax_enable_debug_is_release=m4_tolower(m4_normalize(ifelse([$4],,
+                                                              [$ax_is_release],
+                                                              [$4])))
+
+    # If this is a release, override the default.
+    AS_IF([test "$ax_enable_debug_is_release" = "yes"],
+      [ax_enable_debug_default="no"])
+
+    m4_define(ax_enable_debug_vars,[m4_normalize(ifelse([$2],,,[$2]))])
+    m4_define(ax_disable_debug_vars,[m4_normalize(ifelse([$3],,[NDEBUG],[$3]))])
+
+    AC_ARG_ENABLE(debug,
+        [AS_HELP_STRING([--enable-debug=]@<:@yes/info/profile/no@:>@,[compile with debugging])],
+        [],enable_debug=$ax_enable_debug_default)
+
+    # empty mean debug yes
+    AS_IF([test "x$enable_debug" = "x"],
+      [enable_debug="yes"])
+
+    # case of debug
+    AS_CASE([$enable_debug],
+      [yes],[
+        AC_MSG_RESULT(yes)
+        CFLAGS="${CFLAGS} -g -O0"
+        CXXFLAGS="${CXXFLAGS} -g -O0"
+        FFLAGS="${FFLAGS} -g -O0"
+        FCFLAGS="${FCFLAGS} -g -O0"
+        OBJCFLAGS="${OBJCFLAGS} -g -O0"
+      ],
+      [info],[
+        AC_MSG_RESULT(info)
+        CFLAGS="${CFLAGS} -g"
+        CXXFLAGS="${CXXFLAGS} -g"
+        FFLAGS="${FFLAGS} -g"
+        FCFLAGS="${FCFLAGS} -g"
+        OBJCFLAGS="${OBJCFLAGS} -g"
+      ],
+      [profile],[
+        AC_MSG_RESULT(profile)
+        CFLAGS="${CFLAGS} -g -pg"
+        CXXFLAGS="${CXXFLAGS} -g -pg"
+        FFLAGS="${FFLAGS} -g -pg"
+        FCFLAGS="${FCFLAGS} -g -pg"
+        OBJCFLAGS="${OBJCFLAGS} -g -pg"
+        LDFLAGS="${LDFLAGS} -pg"
+      ],
+      [
+        AC_MSG_RESULT(no)
+        dnl Ensure AC_PROG_CC/CXX/F77/FC/OBJC will not enable debug flags
+        dnl by setting any unset environment flag variables
+        AS_IF([test "x${CFLAGS+set}" != "xset"],
+          [CFLAGS=""])
+        AS_IF([test "x${CXXFLAGS+set}" != "xset"],
+          [CXXFLAGS=""])
+        AS_IF([test "x${FFLAGS+set}" != "xset"],
+          [FFLAGS=""])
+        AS_IF([test "x${FCFLAGS+set}" != "xset"],
+          [FCFLAGS=""])
+        AS_IF([test "x${OBJCFLAGS+set}" != "xset"],
+          [OBJCFLAGS=""])
+      ])
+
+    dnl Define various variables if debugging is disabled.
+    dnl assert.h is a NOP if NDEBUG is defined, so define it by default.
+    AS_IF([test "x$enable_debug" = "xyes"],
+      [m4_map_args_w(ax_enable_debug_vars, [AC_DEFINE(], [,[1],[Define if debugging is enabled])])],
+      [m4_map_args_w(ax_disable_debug_vars, [AC_DEFINE(], [,[1],[Define if debugging is disabled])])])
+    ax_enable_debug=$enable_debug
+])
+
+# Increment this whenever this file is changed.
+#serial 2
+
+dnl GLIB_GSETTINGS
+dnl Defines GSETTINGS_SCHEMAS_INSTALL which controls whether
+dnl the schema should be compiled
+dnl
+
+AC_DEFUN([GLIB_GSETTINGS],
+[
+  dnl We can't use PKG_PREREQ because that needs 0.29.
+  m4_ifndef([PKG_PROG_PKG_CONFIG],
+            [pkg.m4 version 0.28 or later is required])
+
+  m4_pattern_allow([AM_V_GEN])
+  AC_ARG_ENABLE(schemas-compile,
+                AS_HELP_STRING([--disable-schemas-compile],
+                               [Disable regeneration of gschemas.compiled on install]),
+                [case ${enableval} in
+                  yes) GSETTINGS_DISABLE_SCHEMAS_COMPILE=""  ;;
+                  no)  GSETTINGS_DISABLE_SCHEMAS_COMPILE="1" ;;
+                  *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-compile]) ;;
+                 esac])
+  AC_SUBST([GSETTINGS_DISABLE_SCHEMAS_COMPILE])
+  PKG_PROG_PKG_CONFIG([0.16])
+  AC_SUBST(gsettingsschemadir, [${datadir}/glib-2.0/schemas])
+  AS_IF([test x$cross_compiling != xyes],
+        [PKG_CHECK_VAR([GLIB_COMPILE_SCHEMAS], [gio-2.0], [glib_compile_schemas])],
+        [AC_PATH_PROG([GLIB_COMPILE_SCHEMAS], [glib-compile-schemas])])
+  AC_SUBST(GLIB_COMPILE_SCHEMAS)
+  if test "x$GLIB_COMPILE_SCHEMAS" = "x"; then
+    ifelse([$2],,[AC_MSG_ERROR([glib-compile-schemas not found.])],[$2])
+  else
+    ifelse([$1],,[:],[$1])
+  fi
+
+  GSETTINGS_RULES='
+.PHONY : uninstall-gsettings-schemas install-gsettings-schemas clean-gsettings-schemas
+
+mostlyclean-am: clean-gsettings-schemas
+
+gsettings__enum_file = $(addsuffix .enums.xml,$(gsettings_ENUM_NAMESPACE))
+
+%.gschema.valid: %.gschema.xml $(gsettings__enum_file)
+	$(AM_V_GEN) $(GLIB_COMPILE_SCHEMAS) --strict --dry-run $(addprefix --schema-file=,$(gsettings__enum_file)) --schema-file=$< && mkdir -p [$](@D) && touch [$]@
+
+all-am: $(gsettings_SCHEMAS:.xml=.valid)
+uninstall-am: uninstall-gsettings-schemas
+install-data-am: install-gsettings-schemas
+
+.SECONDARY: $(gsettings_SCHEMAS)
+
+install-gsettings-schemas: $(gsettings_SCHEMAS) $(gsettings__enum_file)
+	@$(NORMAL_INSTALL)
+	if test -n "$^"; then \
+		test -z "$(gsettingsschemadir)" || $(MKDIR_P) "$(DESTDIR)$(gsettingsschemadir)"; \
+		$(INSTALL_DATA) $^ "$(DESTDIR)$(gsettingsschemadir)"; \
+		test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir); \
+	fi
+
+uninstall-gsettings-schemas:
+	@$(NORMAL_UNINSTALL)
+	@list='\''$(gsettings_SCHEMAS) $(gsettings__enum_file)'\''; test -n "$(gsettingsschemadir)" || list=; \
+	files=`for p in $$list; do echo $$p; done | sed -e '\''s|^.*/||'\''`; \
+	test -n "$$files" || exit 0; \
+	echo " ( cd '\''$(DESTDIR)$(gsettingsschemadir)'\'' && rm -f" $$files ")"; \
+	cd "$(DESTDIR)$(gsettingsschemadir)" && rm -f $$files
+	test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir)
+
+clean-gsettings-schemas:
+	rm -f $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file)
+
+ifdef gsettings_ENUM_NAMESPACE
+$(gsettings__enum_file): $(gsettings_ENUM_FILES)
+	$(AM_V_GEN) glib-mkenums --comments '\''<!-- @comment@ -->'\'' --fhead "<schemalist>" --vhead "  <@type@ id='\''$(gsettings_ENUM_NAMESPACE).@EnumName@'\''>" --vprod "    <value nick='\''@valuenick@'\'' value='\''@valuenum@'\''/>" --vtail "  </@type@>" --ftail "</schemalist>" [$]^ > [$]@.tmp && mv [$]@.tmp [$]@
+endif
+'
+  _GSETTINGS_SUBST(GSETTINGS_RULES)
+])
+
+dnl _GSETTINGS_SUBST(VARIABLE)
+dnl Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST
+AC_DEFUN([_GSETTINGS_SUBST],
+[
+AC_SUBST([$1])
+m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])])
+]
+)
+
+# mate-common.m4
+#
+#   Copyright (C) 2011 Perberos <perberos@gmail.com>
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation, either version 3 of the License, or
+#   (at your option) any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+dnl MATE_COMMON_INIT
+
+AC_DEFUN([MATE_COMMON_INIT],
+[
+  dnl this macro should come after AC_CONFIG_MACRO_DIR
+  AC_BEFORE([AC_CONFIG_MACRO_DIR], [$0])
+
+  dnl ensure that when the Automake generated makefile calls aclocal,
+  dnl it honours the $ACLOCAL_FLAGS environment variable
+  ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}"
+  if test -n "$ac_macro_dir"; then
+    ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS"
+  fi
+
+  AC_SUBST([ACLOCAL_AMFLAGS])
+])
+
+AC_DEFUN([MATE_DEBUG_CHECK],
+[
+	m4_ifdef([AX_CHECK_ENABLE_DEBUG],[
+		AX_CHECK_ENABLE_DEBUG([
+			m4_default([$1],[no])],[
+			MATE_ENABLE_DEBUG])],[
+		AC_MSG_ERROR([You need to install the autoconf-archive package.])
+	])
+])
+
+dnl MATE_MAINTAINER_MODE_DEFINES ()
+dnl define DISABLE_DEPRECATED
+dnl
+AC_DEFUN([MATE_MAINTAINER_MODE_DEFINES],
+[
+	AC_REQUIRE([AM_MAINTAINER_MODE])
+
+	DISABLE_DEPRECATED=""
+	if test $USE_MAINTAINER_MODE = yes; then
+	        DOMAINS="G ATK PANGO GDK GDK_PIXBUF GTK MATE LIBGLADE VTE WNCK LIBSOUP"
+	        for DOMAIN in $DOMAINS; do
+	               DISABLE_DEPRECATED="$DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_SINGLE_INCLUDES"
+	        done
+	fi
+
+	AC_SUBST(DISABLE_DEPRECATED)
+])
+
+# MATE_COMPILE_WARNINGS
+# Turn on many useful compiler warnings
+# For now, only works on GCC
+#
+#   Copyright (C) 2011 Perberos <perberos@gmail.com>
+#
+#   This program is free software: you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation, either version 3 of the License, or
+#   (at your option) any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+
+AC_DEFUN([MATE_COMPILE_WARNINGS],[
+    dnl ******************************
+    dnl More compiler warnings
+    dnl ******************************
+
+    m4_ifndef([AX_CHECK_COMPILE_FLAG],[
+        AC_MSG_ERROR([You need to install the autoconf-archive package.])
+    ])
+
+    m4_ifndef([AX_APPEND_FLAG],[
+        AC_MSG_ERROR([You need to install the autoconf-archive package.])
+    ])
+
+    AC_ARG_ENABLE(compile-warnings,
+                  AS_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@],
+                                 [Turn on compiler warnings]),,
+                  [enable_compile_warnings="m4_default([$1],[yes])"])
+
+    AC_LANG_PUSH([C])
+
+    case "$enable_compile_warnings" in
+    no)
+	warning_flags=
+	;;
+    minimum)
+	warning_flags="-Wall"
+	;;
+    yes)
+	warning_flags="-Wall -Wmissing-prototypes"
+	;;
+    maximum|error)
+	warning_flags="-Wall -Wmissing-prototypes -Wbad-function-cast -Wcast-align -Wextra -Wno-unused-parameter -Wformat-nonliteral -Wmissing-declarations -Wmissing-field-initializers -Wnested-externs -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Werror=format-security"
+	if test "$enable_compile_warnings" = "error" ; then
+	    warning_flags="$warning_flags -Werror"
+	fi
+	;;
+    *)
+	AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings)
+	;;
+    esac
+
+    # Always pass -Werror=unknown-warning-option to get Clang to fail on bad
+    # flags, otherwise they are always appended to the warn_cflags variable, and
+    # Clang warns on them for every compilation unit.
+    # If this is passed to GCC, it will explode, so the flag must be enabled
+    # conditionally.
+    AX_CHECK_COMPILE_FLAG([-Werror=unknown-warning-option],[
+        compiler_flags_test="-Werror=unknown-warning-option"
+    ],[
+        compiler_flags_test=""
+    ])
+
+    for flag in $warning_flags; do
+         AX_CHECK_COMPILE_FLAG([$flag], [AX_APPEND_FLAG([$flag], [WARN_CFLAGS])], [], [$compiler_flags_test], [])
+    done
+
+    AC_MSG_CHECKING(flags to pass to the C compiler $CC)
+    AC_MSG_RESULT(${WARN_CFLAGS})
+
+    AC_LANG_POP([C])
+    AC_SUBST(WARN_CFLAGS)
+])
+
+dnl For C++, do basically the same thing.
+AC_DEFUN([MATE_CXX_WARNINGS],[
+
+    m4_ifndef([AX_CHECK_COMPILE_FLAG],[
+        AC_MSG_ERROR([You need to install the autoconf-archive package.])
+    ])
+
+    m4_ifndef([AX_APPEND_FLAG],[
+        AC_MSG_ERROR([You need to install the autoconf-archive package.])
+    ])
+
+    AC_ARG_ENABLE(cxx-warnings,
+                  AS_HELP_STRING([--enable-cxx-warnings=@<:@no/minimum/yes/maximum/error@:>@],
+                                 [Turn on compiler warnings.]),,
+                  [enable_cxx_warnings="m4_default([$1],[yes])"])
+
+    AC_LANG_PUSH([C++])
+
+    case "$enable_cxx_warnings" in
+    no)
+	warning_flags=
+	;;
+    minimum)
+	warning_flags="-Wall"
+	;;
+    yes)
+        warning_flags="-Wall -Woverloaded-virtual"
+	;;
+    maximum|error)
+        warning_flags="-Wall -Woverloaded-virtual -Wextra -Wshadow -Wformat-nonliteral -Werror=format-security -Wno-unused-parameter -Wpointer-arith -Wcast-align -Wmissing-declarations -Wredundant-decls"
+	if test "$enable_compile_warnings" = "error" ; then
+	    warning_flags="$warning_flags -Werror"
+	fi
+	;;
+    *)
+	AC_MSG_ERROR(Unknown argument '$enable_cxx_warnings' to --enable-cxx-warnings)
+	;;
+    esac
+
+    # Always pass -Werror=unknown-warning-option to get Clang to fail on bad
+    # flags, otherwise they are always appended to the warn_cflags variable, and
+    # Clang warns on them for every compilation unit.
+    # If this is passed to GCC, it will explode, so the flag must be enabled
+    # conditionally.
+    AX_CHECK_COMPILE_FLAG([-Werror=unknown-warning-option],[
+        compiler_flags_test="-Werror=unknown-warning-option"
+    ],[
+        compiler_flags_test=""
+    ])
+
+    for flag in $warning_flags; do
+         AX_CHECK_COMPILE_FLAG([$flag], [AX_APPEND_FLAG([$flag], [WARN_CXXFLAGS])], [], [$compiler_flags_test], [])
+    done
+
+    AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler)
+    AC_MSG_RESULT(${WARN_CXXFLAGS})
+
+    AC_LANG_POP([C++])
+    AC_SUBST(WARN_CXXFLAGS)
+])
+
+# pkg.m4 - Macros to locate and utilise pkg-config.   -*- Autoconf -*-
+# serial 11 (pkg-config-0.29.1)
+
+dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
+dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
+dnl
+dnl This program is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU General Public License as published by
+dnl the Free Software Foundation; either version 2 of the License, or
+dnl (at your option) any later version.
+dnl
+dnl This program is distributed in the hope that it will be useful, but
+dnl WITHOUT ANY WARRANTY; without even the implied warranty of
+dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+dnl General Public License for more details.
+dnl
+dnl You should have received a copy of the GNU General Public License
+dnl along with this program; if not, write to the Free Software
+dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+dnl 02111-1307, USA.
+dnl
+dnl As a special exception to the GNU General Public License, if you
+dnl distribute this file as part of a program that contains a
+dnl configuration script generated by Autoconf, you may include it under
+dnl the same distribution terms that you use for the rest of that
+dnl program.
+
+dnl PKG_PREREQ(MIN-VERSION)
+dnl -----------------------
+dnl Since: 0.29
+dnl
+dnl Verify that the version of the pkg-config macros are at least
+dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's
+dnl installed version of pkg-config, this checks the developer's version
+dnl of pkg.m4 when generating configure.
+dnl
+dnl To ensure that this macro is defined, also add:
+dnl m4_ifndef([PKG_PREREQ],
+dnl     [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])])
+dnl
+dnl See the "Since" comment for each macro you use to see what version
+dnl of the macros you require.
+m4_defun([PKG_PREREQ],
+[m4_define([PKG_MACROS_VERSION], [0.29.1])
+m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
+    [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
+])dnl PKG_PREREQ
+
+dnl PKG_PROG_PKG_CONFIG([MIN-VERSION])
+dnl ----------------------------------
+dnl Since: 0.16
+dnl
+dnl Search for the pkg-config tool and set the PKG_CONFIG variable to
+dnl first found in the path. Checks that the version of pkg-config found
+dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is
+dnl used since that's the first version where most current features of
+dnl pkg-config existed.
+AC_DEFUN([PKG_PROG_PKG_CONFIG],
+[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
+m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
+m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
+AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
+AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
+AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
+
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
+	AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
+fi
+if test -n "$PKG_CONFIG"; then
+	_pkg_min_version=m4_default([$1], [0.9.0])
+	AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
+	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
+		AC_MSG_RESULT([yes])
+	else
+		AC_MSG_RESULT([no])
+		PKG_CONFIG=""
+	fi
+fi[]dnl
+])dnl PKG_PROG_PKG_CONFIG
+
+dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
+dnl -------------------------------------------------------------------
+dnl Since: 0.18
+dnl
+dnl Check to see whether a particular set of modules exists. Similar to
+dnl PKG_CHECK_MODULES(), but does not set variables or print errors.
+dnl
+dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
+dnl only at the first occurence in configure.ac, so if the first place
+dnl it's called might be skipped (such as if it is within an "if", you
+dnl have to call PKG_CHECK_EXISTS manually
+AC_DEFUN([PKG_CHECK_EXISTS],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+if test -n "$PKG_CONFIG" && \
+    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
+  m4_default([$2], [:])
+m4_ifvaln([$3], [else
+  $3])dnl
+fi])
+
+dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
+dnl ---------------------------------------------
+dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting
+dnl pkg_failed based on the result.
+m4_define([_PKG_CONFIG],
+[if test -n "$$1"; then
+    pkg_cv_[]$1="$$1"
+ elif test -n "$PKG_CONFIG"; then
+    PKG_CHECK_EXISTS([$3],
+                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
+		      test "x$?" != "x0" && pkg_failed=yes ],
+		     [pkg_failed=yes])
+ else
+    pkg_failed=untried
+fi[]dnl
+])dnl _PKG_CONFIG
+
+dnl _PKG_SHORT_ERRORS_SUPPORTED
+dnl ---------------------------
+dnl Internal check to see if pkg-config supports short errors.
+AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
+        _pkg_short_errors_supported=yes
+else
+        _pkg_short_errors_supported=no
+fi[]dnl
+])dnl _PKG_SHORT_ERRORS_SUPPORTED
+
+
+dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
+dnl   [ACTION-IF-NOT-FOUND])
+dnl --------------------------------------------------------------
+dnl Since: 0.4.0
+dnl
+dnl Note that if there is a possibility the first call to
+dnl PKG_CHECK_MODULES might not happen, you should be sure to include an
+dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
+AC_DEFUN([PKG_CHECK_MODULES],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
+AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
+
+pkg_failed=no
+AC_MSG_CHECKING([for $1])
+
+_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
+_PKG_CONFIG([$1][_LIBS], [libs], [$2])
+
+m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
+and $1[]_LIBS to avoid the need to call pkg-config.
+See the pkg-config man page for more details.])
+
+if test $pkg_failed = yes; then
+   	AC_MSG_RESULT([no])
+        _PKG_SHORT_ERRORS_SUPPORTED
+        if test $_pkg_short_errors_supported = yes; then
+	        $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
+        else 
+	        $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
+        fi
+	# Put the nasty error message in config.log where it belongs
+	echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
+
+	m4_default([$4], [AC_MSG_ERROR(
+[Package requirements ($2) were not met:
+
+$$1_PKG_ERRORS
+
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
+installed software in a non-standard prefix.
+
+_PKG_TEXT])[]dnl
+        ])
+elif test $pkg_failed = untried; then
+     	AC_MSG_RESULT([no])
+	m4_default([$4], [AC_MSG_FAILURE(
+[The pkg-config script could not be found or is too old.  Make sure it
+is in your PATH or set the PKG_CONFIG environment variable to the full
+path to pkg-config.
+
+_PKG_TEXT
+
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
+        ])
+else
+	$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
+	$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
+        AC_MSG_RESULT([yes])
+	$3
+fi[]dnl
+])dnl PKG_CHECK_MODULES
+
+
+dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
+dnl   [ACTION-IF-NOT-FOUND])
+dnl ---------------------------------------------------------------------
+dnl Since: 0.29
+dnl
+dnl Checks for existence of MODULES and gathers its build flags with
+dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags
+dnl and VARIABLE-PREFIX_LIBS from --libs.
+dnl
+dnl Note that if there is a possibility the first call to
+dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to
+dnl include an explicit call to PKG_PROG_PKG_CONFIG in your
+dnl configure.ac.
+AC_DEFUN([PKG_CHECK_MODULES_STATIC],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+_save_PKG_CONFIG=$PKG_CONFIG
+PKG_CONFIG="$PKG_CONFIG --static"
+PKG_CHECK_MODULES($@)
+PKG_CONFIG=$_save_PKG_CONFIG[]dnl
+])dnl PKG_CHECK_MODULES_STATIC
+
+
+dnl PKG_INSTALLDIR([DIRECTORY])
+dnl -------------------------
+dnl Since: 0.27
+dnl
+dnl Substitutes the variable pkgconfigdir as the location where a module
+dnl should install pkg-config .pc files. By default the directory is
+dnl $libdir/pkgconfig, but the default can be changed by passing
+dnl DIRECTORY. The user can override through the --with-pkgconfigdir
+dnl parameter.
+AC_DEFUN([PKG_INSTALLDIR],
+[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
+m4_pushdef([pkg_description],
+    [pkg-config installation directory @<:@]pkg_default[@:>@])
+AC_ARG_WITH([pkgconfigdir],
+    [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
+    [with_pkgconfigdir=]pkg_default)
+AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
+m4_popdef([pkg_default])
+m4_popdef([pkg_description])
+])dnl PKG_INSTALLDIR
+
+
+dnl PKG_NOARCH_INSTALLDIR([DIRECTORY])
+dnl --------------------------------
+dnl Since: 0.27
+dnl
+dnl Substitutes the variable noarch_pkgconfigdir as the location where a
+dnl module should install arch-independent pkg-config .pc files. By
+dnl default the directory is $datadir/pkgconfig, but the default can be
+dnl changed by passing DIRECTORY. The user can override through the
+dnl --with-noarch-pkgconfigdir parameter.
+AC_DEFUN([PKG_NOARCH_INSTALLDIR],
+[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
+m4_pushdef([pkg_description],
+    [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
+AC_ARG_WITH([noarch-pkgconfigdir],
+    [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
+    [with_noarch_pkgconfigdir=]pkg_default)
+AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
+m4_popdef([pkg_default])
+m4_popdef([pkg_description])
+])dnl PKG_NOARCH_INSTALLDIR
+
+
+dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
+dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
+dnl -------------------------------------------
+dnl Since: 0.28
+dnl
+dnl Retrieves the value of the pkg-config variable for the given module.
+AC_DEFUN([PKG_CHECK_VAR],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
+
+_PKG_CONFIG([$1], [variable="][$3]["], [$2])
+AS_VAR_COPY([$1], [pkg_cv_][$1])
+
+AS_VAR_IF([$1], [""], [$5], [$4])dnl
+])dnl PKG_CHECK_VAR
+
+dnl PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES,
+dnl   [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND],
+dnl   [DESCRIPTION], [DEFAULT])
+dnl ------------------------------------------
+dnl
+dnl Prepare a "--with-" configure option using the lowercase
+dnl [VARIABLE-PREFIX] name, merging the behaviour of AC_ARG_WITH and
+dnl PKG_CHECK_MODULES in a single macro.
+AC_DEFUN([PKG_WITH_MODULES],
+[
+m4_pushdef([with_arg], m4_tolower([$1]))
+
+m4_pushdef([description],
+           [m4_default([$5], [build with ]with_arg[ support])])
+
+m4_pushdef([def_arg], [m4_default([$6], [auto])])
+m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes])
+m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no])
+
+m4_case(def_arg,
+            [yes],[m4_pushdef([with_without], [--without-]with_arg)],
+            [m4_pushdef([with_without],[--with-]with_arg)])
+
+AC_ARG_WITH(with_arg,
+     AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),,
+    [AS_TR_SH([with_]with_arg)=def_arg])
+
+AS_CASE([$AS_TR_SH([with_]with_arg)],
+            [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)],
+            [auto],[PKG_CHECK_MODULES([$1],[$2],
+                                        [m4_n([def_action_if_found]) $3],
+                                        [m4_n([def_action_if_not_found]) $4])])
+
+m4_popdef([with_arg])
+m4_popdef([description])
+m4_popdef([def_arg])
+
+])dnl PKG_WITH_MODULES
+
+dnl PKG_HAVE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
+dnl   [DESCRIPTION], [DEFAULT])
+dnl -----------------------------------------------
+dnl
+dnl Convenience macro to trigger AM_CONDITIONAL after PKG_WITH_MODULES
+dnl check._[VARIABLE-PREFIX] is exported as make variable.
+AC_DEFUN([PKG_HAVE_WITH_MODULES],
+[
+PKG_WITH_MODULES([$1],[$2],,,[$3],[$4])
+
+AM_CONDITIONAL([HAVE_][$1],
+               [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"])
+])dnl PKG_HAVE_WITH_MODULES
+
+dnl PKG_HAVE_DEFINE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
+dnl   [DESCRIPTION], [DEFAULT])
+dnl ------------------------------------------------------
+dnl
+dnl Convenience macro to run AM_CONDITIONAL and AC_DEFINE after
+dnl PKG_WITH_MODULES check. HAVE_[VARIABLE-PREFIX] is exported as make
+dnl and preprocessor variable.
+AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES],
+[
+PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4])
+
+AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"],
+        [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])])
+])dnl PKG_HAVE_DEFINE_WITH_MODULES
+
+AC_DEFUN([YELP_HELP_INIT],
+[
+AC_REQUIRE([AC_PROG_LN_S])
+m4_pattern_allow([AM_V_at])
+m4_pattern_allow([AM_V_GEN])
+m4_pattern_allow([AM_DEFAULT_VERBOSITY])
+
+YELP_LC_MEDIA_LINKS=true
+YELP_LC_DIST=true
+
+for yelpopt in [$1]; do
+  case $yelpopt in
+    lc-media-links)    YELP_LC_MEDIA_LINKS=true ;;
+    no-lc-media-links) YELP_LC_MEDIA_LINKS= ;;
+    lc-dist)           YELP_LC_DIST=true ;;
+    no-lc-dist)        YELP_LC_DIST= ;;
+    *) AC_MSG_ERROR([Unrecognized [YELP_HELP_INIT] option $yelpopt"]) ;;
+  esac
+done;
+AC_SUBST([YELP_LC_MEDIA_LINKS])
+AC_SUBST([YELP_LC_DIST])
+
+AC_ARG_WITH([help-dir],
+            AS_HELP_STRING([--with-help-dir=DIR],
+                           [path where help files are installed]),,
+            [with_help_dir='${datadir}/help'])
+HELP_DIR="$with_help_dir"
+AC_SUBST(HELP_DIR)
+
+AC_ARG_VAR([ITSTOOL], [Path to the `itstool` command])
+AC_CHECK_PROG([ITSTOOL], [itstool], [itstool])
+if test x"$ITSTOOL" = x; then
+  AC_MSG_ERROR([itstool not found])
+fi
+
+AC_ARG_VAR([XMLLINT], [Path to the `xmllint` command])
+AC_CHECK_PROG([XMLLINT], [xmllint], [xmllint])
+if test x"$XMLLINT" = x; then
+  AC_MSG_ERROR([xmllint not found])
+fi
+
+YELP_HELP_RULES='
+HELP_ID ?=
+HELP_POT ?=
+HELP_FILES ?=
+HELP_EXTRA ?=
+HELP_MEDIA ?=
+HELP_LINGUAS ?=
+
+_HELP_LINGUAS = $(if $(filter environment,$(origin LINGUAS)),$(filter $(LINGUAS),$(HELP_LINGUAS)),$(HELP_LINGUAS))
+_HELP_POTFILE = $(if $(HELP_POT),$(HELP_POT),$(if $(HELP_ID),$(HELP_ID).pot))
+_HELP_POFILES = $(if $(HELP_ID),$(foreach lc,$(_HELP_LINGUAS),$(lc)/$(lc).po))
+_HELP_MOFILES = $(patsubst %.po,%.mo,$(_HELP_POFILES))
+_HELP_C_FILES = $(foreach f,$(HELP_FILES),C/$(f))
+_HELP_C_EXTRA = $(foreach f,$(HELP_EXTRA),C/$(f))
+_HELP_C_MEDIA = $(foreach f,$(HELP_MEDIA),C/$(f))
+_HELP_LC_FILES = $(foreach lc,$(_HELP_LINGUAS),$(foreach f,$(HELP_FILES),$(lc)/$(f)))
+_HELP_LC_STAMPS = $(foreach lc,$(_HELP_LINGUAS),$(lc)/$(lc).stamp)
+
+_HELP_DEFAULT_V = $(if $(AM_DEFAULT_VERBOSITY),$(AM_DEFAULT_VERBOSITY),1)
+_HELP_V = $(if $(V),$(V),$(_HELP_DEFAULT_V))
+_HELP_LC_VERBOSE = $(_HELP_LC_VERBOSE_$(_HELP_V))
+_HELP_LC_VERBOSE_ = $(_HELP_LC_VERBOSE_$(_HELP_DEFAULT_V))
+_HELP_LC_VERBOSE_0 = @echo "  GEN    "$(dir [$]@);
+
+all: $(_HELP_C_FILES) $(_HELP_C_EXTRA) $(_HELP_C_MEDIA) $(_HELP_LC_FILES) $(_HELP_POFILES)
+
+.PHONY: pot
+pot: $(_HELP_POTFILE)
+$(_HELP_POTFILE): $(_HELP_C_FILES) $(_HELP_C_EXTRA) $(_HELP_C_MEDIA)
+	$(AM_V_GEN)if test -d "C"; then d=; else d="$(srcdir)/"; fi; \
+	$(ITSTOOL) -o "[$]@" $(foreach f,$(_HELP_C_FILES),"$${d}$(f)")
+
+.PHONY: repo
+repo: $(_HELP_POTFILE)
+	$(AM_V_at)for po in $(_HELP_POFILES); do \
+	  if test "x[$](_HELP_V)" = "x0"; then echo "  GEN    $${po}"; fi; \
+	  msgmerge -q -o "$${po}" "$${po}" "$(_HELP_POTFILE)"; \
+	done
+
+$(_HELP_POFILES):
+	$(AM_V_at)if ! test -d "$(dir [$]@)"; then mkdir "$(dir [$]@)"; fi
+	$(AM_V_at)if test ! -f "[$]@" -a -f "$(srcdir)/[$]@"; then cp "$(srcdir)/[$]@" "[$]@"; fi
+	$(AM_V_GEN)if ! test -f "[$]@"; then \
+	  (cd "$(dir [$]@)" && \
+	    $(ITSTOOL) -o "$(notdir [$]@).tmp" $(_HELP_C_FILES) && \
+	    mv "$(notdir [$]@).tmp" "$(notdir [$]@)"); \
+	else \
+	  (cd "$(dir [$]@)" && \
+	    $(ITSTOOL) -o "$(notdir [$]@).tmp" $(_HELP_C_FILES) && \
+	    msgmerge -o "$(notdir [$]@)" "$(notdir [$]@)" "$(notdir [$]@).tmp" && \
+	    rm "$(notdir [$]@).tmp"); \
+	fi
+
+$(_HELP_MOFILES): %.mo: %.po
+	$(AM_V_at)if ! test -d "$(dir [$]@)"; then mkdir "$(dir [$]@)"; fi
+	$(AM_V_GEN)msgfmt -o "[$]@" "$<"
+
+$(_HELP_LC_FILES): $(_HELP_LINGUAS)
+$(_HELP_LINGUAS): $(_HELP_LC_STAMPS)
+$(_HELP_LC_STAMPS): %.stamp: %.mo
+$(_HELP_LC_STAMPS): $(_HELP_C_FILES) $(_HELP_C_EXTRA)
+	$(AM_V_at)if ! test -d "$(dir [$]@)"; then mkdir "$(dir [$]@)"; fi
+	$(_HELP_LC_VERBOSE)if test -d "C"; then d="../"; else d="$(abs_srcdir)/"; fi; \
+	mo="$(dir [$]@)$(patsubst %/$(notdir [$]@),%,[$]@).mo"; \
+	if test -f "$${mo}"; then mo="../$${mo}"; else mo="$(abs_srcdir)/$${mo}"; fi; \
+	(cd "$(dir [$]@)" && $(ITSTOOL) -m "$${mo}" $(foreach f,$(_HELP_C_FILES),$${d}/$(f))) && \
+	touch "[$]@"
+
+.PHONY: clean-help
+mostlyclean-am: $(if $(HELP_ID),clean-help)
+clean-help:
+	rm -f $(_HELP_LC_FILES) $(_HELP_LC_STAMPS) $(_HELP_MOFILES)
+
+EXTRA_DIST ?=
+EXTRA_DIST += $(_HELP_C_EXTRA) $(_HELP_C_MEDIA)
+EXTRA_DIST += $(if $(YELP_LC_DIST),$(foreach lc,$(HELP_LINGUAS),$(lc)/$(lc).stamp))
+EXTRA_DIST += $(foreach lc,$(HELP_LINGUAS),$(lc)/$(lc).po)
+EXTRA_DIST += $(foreach f,$(HELP_MEDIA),$(foreach lc,$(HELP_LINGUAS),$(wildcard $(lc)/$(f))))
+
+distdir: distdir-help-files
+distdir-help-files: $(_HELP_LC_FILES)
+	@for lc in C $(if $(YELP_LC_DIST),$(HELP_LINGUAS)) ; do \
+	  $(MKDIR_P) "$(distdir)/$$lc"; \
+	  for file in $(HELP_FILES); do \
+	    if test -f "$$lc/$$file"; then d=./; else d=$(srcdir)/; fi; \
+	    cp -p "$$d$$lc/$$file" "$(distdir)/$$lc/" || exit 1; \
+	  done; \
+	done; \
+
+.PHONY: check-help
+check: check-help
+check-help:
+	for lc in C $(_HELP_LINGUAS); do \
+	  if test -d "$$lc"; \
+	    then d=; \
+	    xmlpath="$$lc"; \
+	  else \
+	    d="$(srcdir)/"; \
+	    xmlpath="$$lc:$(srcdir)/$$lc"; \
+	  fi; \
+	  for page in $(HELP_FILES); do \
+	    echo "$(XMLLINT) --nonet --noout --noent --path $$xmlpath --xinclude $$d$$lc/$$page"; \
+	    $(XMLLINT) --nonet --noout --noent --path "$$xmlpath" --xinclude "$$d$$lc/$$page"; \
+	  done; \
+	done
+
+
+.PHONY: install-help
+install-data-am: $(if $(HELP_ID),install-help)
+install-help: $(_HELP_LC_FILES)
+	@for lc in C $(_HELP_LINGUAS); do \
+	  $(mkinstalldirs) "$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)" || exit 1; \
+	done
+	@for lc in C $(_HELP_LINGUAS); do for f in $(HELP_FILES); do \
+	  if test -f "$$lc/$$f"; then d=; else d="$(srcdir)/"; fi; \
+	  helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \
+	  if ! test -d "$$helpdir"; then $(mkinstalldirs) "$$helpdir"; fi; \
+	  echo "$(INSTALL_DATA) $$d$$lc/$$f $$helpdir`basename $$f`"; \
+	  $(INSTALL_DATA) "$$d$$lc/$$f" "$$helpdir`basename $$f`" || exit 1; \
+	done; done
+	@for f in $(_HELP_C_EXTRA); do \
+	  lc=`dirname "$$f"`; lc=`basename "$$lc"`; \
+	  if test -f "$$f"; then d=; else d="$(srcdir)/"; fi; \
+	  helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \
+	  if ! test -d "$$helpdir"; then $(mkinstalldirs) "$$helpdir"; fi; \
+	  echo "$(INSTALL_DATA) $$d$$f $$helpdir`basename $$f`"; \
+	  $(INSTALL_DATA) "$$d$$f" "$$helpdir`basename $$f`" || exit 1; \
+	done
+	@for f in $(HELP_MEDIA); do \
+	  for lc in C $(_HELP_LINGUAS); do \
+	    if test -f "$$lc$$f"; then d=; else d="$(srcdir)/"; fi; \
+	    helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \
+	    mdir=`dirname "$$f"`; \
+	    if test "x$mdir" = "x."; then mdir=""; fi; \
+	    if ! test -d "$$helpdir$$mdir"; then $(mkinstalldirs) "$$helpdir$$mdir"; fi; \
+	    if test -f "$$d$$lc/$$f"; then \
+	      echo "$(INSTALL_DATA) $$d$$lc/$$f $$helpdir$$f"; \
+	      $(INSTALL_DATA) "$$d$$lc/$$f" "$$helpdir$$f" || exit 1; \
+	    elif test "x$$lc" != "xC"; then \
+	      if test "x$(YELP_LC_MEDIA_LINKS)" != "x"; then \
+	        echo "$(LN_S) -f $(HELP_DIR)/C/$(HELP_ID)/$$f $$helpdir$$f"; \
+	        $(LN_S) -f "$(HELP_DIR)/C/$(HELP_ID)/$$f" "$$helpdir$$f" || exit 1; \
+	      fi; \
+	    fi; \
+	  done; \
+	done
+
+.PHONY: uninstall-help
+uninstall-am: $(if $(HELP_ID),uninstall-help)
+uninstall-help:
+	for lc in C $(_HELP_LINGUAS); do for f in $(HELP_FILES); do \
+	  helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \
+	  echo "rm -f $$helpdir`basename $$f`"; \
+	  rm -f "$$helpdir`basename $$f`"; \
+	done; done
+	@for f in $(_HELP_C_EXTRA); do \
+	  lc=`dirname "$$f"`; lc=`basename "$$lc"`; \
+	  helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \
+	  echo "rm -f $$helpdir`basename $$f`"; \
+	  rm -f "$$helpdir`basename $$f`"; \
+	done
+	@for f in $(HELP_MEDIA); do \
+	  for lc in C $(_HELP_LINGUAS); do \
+	    helpdir="$(DESTDIR)$(HELP_DIR)/$$lc/$(HELP_ID)/"; \
+	    echo "rm -f $$helpdir$$f"; \
+	    rm -f "$$helpdir$$f"; \
+	  done; \
+	done;
+'
+AC_SUBST([YELP_HELP_RULES])
+m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([YELP_HELP_RULES])])
+])
+
+# Copyright (C) 2002-2020 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.2], [],
+      [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.2])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-2020 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_COND_IF                                            -*- Autoconf -*-
+
+# Copyright (C) 2008-2020 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_COND_IF
+# _AM_COND_ELSE
+# _AM_COND_ENDIF
+# --------------
+# These macros are only used for tracing.
+m4_define([_AM_COND_IF])
+m4_define([_AM_COND_ELSE])
+m4_define([_AM_COND_ENDIF])
+
+# AM_COND_IF(COND, [IF-TRUE], [IF-FALSE])
+# ---------------------------------------
+# If the shell condition COND is true, execute IF-TRUE, otherwise execute
+# IF-FALSE.  Allow automake to learn about conditional instantiating macros
+# (the AC_CONFIG_FOOS).
+AC_DEFUN([AM_COND_IF],
+[m4_ifndef([_AM_COND_VALUE_$1],
+	   [m4_fatal([$0: no such condition "$1"])])dnl
+_AM_COND_IF([$1])dnl
+if test -z "$$1_TRUE"; then :
+  m4_n([$2])[]dnl
+m4_ifval([$3],
+[_AM_COND_ELSE([$1])dnl
+else
+  $3
+])dnl
+_AM_COND_ENDIF([$1])dnl
+fi[]dnl
+])
+
+# AM_CONDITIONAL                                            -*- Autoconf -*-
+
+# Copyright (C) 1997-2020 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-2020 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-2020 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-2020 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
+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_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([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:
+# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
+# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
+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
+])
+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: <http://austingroupbugs.net/view.php?id=542>
+
+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: <https://www.gnu.org/software/coreutils/>.
+
+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-2020 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-2020 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])])
+
+# Check to see how 'make' treats includes.	            -*- Autoconf -*-
+
+# Copyright (C) 2001-2020 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-2020 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
+  case $am_aux_dir in
+  *\ * | *\	*)
+    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
+  *)
+    MISSING="\${SHELL} $am_aux_dir/missing" ;;
+  esac
+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-2020 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-2020 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-2020 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-2020 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-2020 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-2020 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-2020 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-2020 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 <conftest.tar])
+      AM_RUN_LOG([cat conftest.dir/file])
+      grep GrepMe conftest.dir/file >/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
+
+m4_include([m4/gettext.m4])
+m4_include([m4/gtk-doc.m4])
+m4_include([m4/host-cpu-c-abi.m4])
+m4_include([m4/iconv.m4])
+m4_include([m4/intlmacosx.m4])
+m4_include([m4/lib-ld.m4])
+m4_include([m4/lib-link.m4])
+m4_include([m4/lib-prefix.m4])
+m4_include([m4/libtool.m4])
+m4_include([m4/ltoptions.m4])
+m4_include([m4/ltsugar.m4])
+m4_include([m4/ltversion.m4])
+m4_include([m4/lt~obsolete.m4])
+m4_include([m4/nls.m4])
+m4_include([m4/po.m4])
+m4_include([m4/progtest.m4])
diff -pruN 1.24.0-1/autogen.sh 1.26.0-0ubuntu1/autogen.sh
--- 1.24.0-1/autogen.sh	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/autogen.sh	2021-08-05 19:43:41.000000000 +0000
@@ -18,12 +18,11 @@ which mate-autogen || {
 }
 
 which yelp-build || {
-    echo "You need to install yelp-tools" 
+    echo "You need to install yelp-tools"
     exit 1
 }
 
 REQUIRED_AUTOMAKE_VERSION=1.9
-USE_MATE2_MACROS=1
 USE_COMMON_DOC_BUILD=yes
 
 . mate-autogen
diff -pruN 1.24.0-1/baobab/data/baobab-dialog-scan-props.ui 1.26.0-0ubuntu1/baobab/data/baobab-dialog-scan-props.ui
--- 1.24.0-1/baobab/data/baobab-dialog-scan-props.ui	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/data/baobab-dialog-scan-props.ui	2021-08-05 19:43:41.000000000 +0000
@@ -1,178 +1,150 @@
-<?xml version="1.0"?>
-<!--*- mode: xml -*-->
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Generated with glade 3.36.0 -->
 <interface>
+  <requires lib="gtk+" version="3.22"/>
+  <object class="GtkImage" id="image1">
+    <property name="visible">True</property>
+    <property name="can_focus">False</property>
+    <property name="icon_name">help-browser</property>
+  </object>
+  <object class="GtkImage" id="image2">
+    <property name="visible">True</property>
+    <property name="can_focus">False</property>
+    <property name="icon_name">window-close</property>
+  </object>
   <object class="GtkDialog" id="dialog_scan_props">
+    <property name="can_focus">False</property>
     <property name="border_width">5</property>
-    <property name="height_request">330</property>
-    <property name="visible">False</property>
     <property name="title" translatable="yes">Disk Usage Analyzer Preferences</property>
-    <property name="type">GTK_WINDOW_TOPLEVEL</property>
-    <property name="window_position">GTK_WIN_POS_NONE</property>
-    <property name="modal">True</property>
-    <property name="resizable">True</property>
-    <property name="destroy_with_parent">False</property>
-    <property name="decorated">True</property>
-    <property name="skip_taskbar_hint">False</property>
-    <property name="skip_pager_hint">False</property>
-    <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
-    <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
-    <property name="focus_on_map">True</property>
-    <property name="urgency_hint">False</property>
+    <property name="default_height">330</property>
+    <property name="type_hint">dialog</property>
     <child internal-child="vbox">
-      <object class="GtkVBox" id="dialog-vbox2">
-        <property name="visible">True</property>
-        <property name="homogeneous">False</property>
+      <object class="GtkBox">
+        <property name="can_focus">False</property>
+        <property name="orientation">vertical</property>
         <property name="spacing">2</property>
         <child internal-child="action_area">
-          <object class="GtkHButtonBox" id="dialog-action_area2">
-            <property name="visible">True</property>
-            <property name="layout_style">GTK_BUTTONBOX_END</property>
+          <object class="GtkButtonBox">
+            <property name="can_focus">False</property>
+            <property name="layout_style">end</property>
             <child>
-              <object class="GtkButton" id="helpbutton1">
+              <object class="GtkButton" id="button1">
+                <property name="label" translatable="yes">_Help</property>
                 <property name="visible">True</property>
-                <property name="can_default">True</property>
                 <property name="can_focus">True</property>
-                <property name="label">gtk-help</property>
-                <property name="use_stock">True</property>
-                <property name="relief">GTK_RELIEF_NORMAL</property>
-                <property name="focus_on_click">True</property>
+                <property name="receives_default">True</property>
+                <property name="image">image1</property>
+                <property name="use_underline">True</property>
+                <property name="always_show_image">True</property>
               </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">0</property>
+              </packing>
             </child>
             <child>
-              <object class="GtkButton" id="closebutton1">
+              <object class="GtkButton" id="button2">
+                <property name="label" translatable="yes">_Close</property>
                 <property name="visible">True</property>
-                <property name="can_default">True</property>
                 <property name="can_focus">True</property>
-                <property name="label">gtk-close</property>
-                <property name="use_stock">True</property>
-                <property name="relief">GTK_RELIEF_NORMAL</property>
-                <property name="focus_on_click">True</property>
+                <property name="receives_default">True</property>
+                <property name="image">image2</property>
+                <property name="use_underline">True</property>
+                <property name="always_show_image">True</property>
               </object>
+              <packing>
+                <property name="expand">True</property>
+                <property name="fill">True</property>
+                <property name="position">1</property>
+              </packing>
             </child>
           </object>
           <packing>
-            <property name="padding">0</property>
             <property name="expand">False</property>
-            <property name="fill">True</property>
-            <property name="pack_type">GTK_PACK_END</property>
+            <property name="fill">False</property>
+            <property name="position">0</property>
           </packing>
         </child>
         <child>
-          <object class="GtkVBox" id="vbox5">
-            <property name="border_width">5</property>
+          <object class="GtkBox">
             <property name="visible">True</property>
-            <property name="homogeneous">False</property>
+            <property name="can_focus">False</property>
+            <property name="vexpand">True</property>
+            <property name="orientation">vertical</property>
             <property name="spacing">6</property>
             <child>
-              <object class="GtkAlignment" id="alignment3">
+              <object class="GtkLabel">
                 <property name="visible">True</property>
-                <property name="xalign">0.5</property>
-                <property name="yalign">0.5</property>
-                <property name="xscale">1</property>
-                <property name="yscale">1</property>
-                <property name="top_padding">0</property>
-                <property name="bottom_padding">0</property>
-                <property name="left_padding">0</property>
-                <property name="right_padding">0</property>
-                <child>
-                  <object class="GtkLabel" id="label100">
-                    <property name="visible">True</property>
-                    <property name="label" translatable="yes">Select _devices to include in filesystem scan:</property>
-                    <property name="use_underline">True</property>
-                    <property name="use_markup">False</property>
-                    <property name="justify">GTK_JUSTIFY_LEFT</property>
-                    <property name="wrap">False</property>
-                    <property name="selectable">False</property>
-                    <property name="xalign">0</property>
-                    <property name="yalign">0.5</property>
-                    <property name="xpad">0</property>
-                    <property name="ypad">0</property>
-                    <property name="mnemonic_widget">tree_view_props</property>
-                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-                    <property name="width_chars">-1</property>
-                    <property name="single_line_mode">False</property>
-                    <property name="angle">0</property>
-                  </object>
-                </child>
+                <property name="can_focus">False</property>
+                <property name="halign">start</property>
+                <property name="label" translatable="yes">Select _devices to include in filesystem scan:</property>
+                <property name="use_underline">True</property>
+                <property name="mnemonic_widget">tree_view_props</property>
               </object>
               <packing>
-                <property name="padding">0</property>
                 <property name="expand">False</property>
-                <property name="fill">False</property>
+                <property name="fill">True</property>
+                <property name="position">0</property>
               </packing>
             </child>
             <child>
-              <object class="GtkAlignment" id="alignment2">
+              <object class="GtkScrolledWindow">
                 <property name="visible">True</property>
-                <property name="xalign">0.5</property>
-                <property name="yalign">0.5</property>
-                <property name="xscale">1</property>
-                <property name="yscale">1</property>
-                <property name="top_padding">0</property>
-                <property name="bottom_padding">0</property>
-                <property name="left_padding">0</property>
-                <property name="right_padding">0</property>
+                <property name="can_focus">True</property>
+                <property name="hexpand">True</property>
+                <property name="vexpand">True</property>
+                <property name="hscrollbar_policy">never</property>
+                <property name="shadow_type">in</property>
                 <child>
-                  <object class="GtkScrolledWindow" id="scrolledwindow2">
+                  <object class="GtkTreeView" id="tree_view_props">
                     <property name="visible">True</property>
                     <property name="can_focus">True</property>
-                    <property name="hscrollbar_policy">GTK_POLICY_NEVER</property>
-                    <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
-                    <property name="shadow_type">GTK_SHADOW_IN</property>
-                    <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
-                    <child>
-                      <object class="GtkTreeView" id="tree_view_props">
-                        <property name="visible">True</property>
-                        <property name="can_focus">True</property>
-                        <property name="headers_visible">True</property>
-                        <property name="rules_hint">True</property>
-                        <property name="reorderable">False</property>
-                        <property name="enable_search">False</property>
-                        <property name="fixed_height_mode">False</property>
-                        <property name="hover_selection">False</property>
-                        <property name="hover_expand">False</property>
-                      </object>
+                    <property name="hexpand">True</property>
+                    <property name="vexpand">True</property>
+                    <child internal-child="selection">
+                      <object class="GtkTreeSelection"/>
                     </child>
                   </object>
                 </child>
               </object>
               <packing>
-                <property name="padding">0</property>
-                <property name="expand">True</property>
+                <property name="expand">False</property>
                 <property name="fill">True</property>
+                <property name="position">1</property>
               </packing>
             </child>
             <child>
               <object class="GtkCheckButton" id="check_enable_home">
+                <property name="label" translatable="yes">_Monitor changes to your home folder</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
-                <property name="label" translatable="yes">_Monitor changes to your home folder</property>
+                <property name="receives_default">False</property>
+                <property name="halign">start</property>
                 <property name="use_underline">True</property>
-                <property name="relief">GTK_RELIEF_NORMAL</property>
-                <property name="focus_on_click">True</property>
-                <property name="active">True</property>
-                <property name="inconsistent">False</property>
                 <property name="draw_indicator">True</property>
               </object>
               <packing>
-                <property name="padding">0</property>
                 <property name="expand">False</property>
-                <property name="fill">False</property>
+                <property name="fill">True</property>
+                <property name="position">2</property>
               </packing>
             </child>
           </object>
           <packing>
-            <property name="padding">0</property>
-            <property name="expand">True</property>
+            <property name="expand">False</property>
             <property name="fill">True</property>
+            <property name="position">1</property>
           </packing>
         </child>
       </object>
     </child>
     <action-widgets>
-      <action-widget response="-11">helpbutton1</action-widget>
-      <action-widget response="-7">closebutton1</action-widget>
+      <action-widget response="-11">button1</action-widget>
+      <action-widget response="-7">button2</action-widget>
     </action-widgets>
+    <child type="titlebar">
+      <placeholder/>
+    </child>
   </object>
 </interface>
-
diff -pruN 1.24.0-1/baobab/data/Makefile.am 1.26.0-0ubuntu1/baobab/data/Makefile.am
--- 1.24.0-1/baobab/data/Makefile.am	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/data/Makefile.am	2021-08-05 19:43:41.000000000 +0000
@@ -1,3 +1,18 @@
+# This file is part of MATE Utils.
+#
+# MATE Utils is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 2 of the License, or
+# (at your option) any later version.
+#
+# MATE Utils is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with MATE Utils.  If not, see <https://www.gnu.org/licenses/>.
+
 baobabappdir = $(datadir)/applications
 baobabapp_in_files = mate-disk-usage-analyzer.desktop.in
 baobabapp_DATA = $(baobabapp_in_files:.desktop.in=.desktop)
@@ -6,13 +21,22 @@ $(baobabapp_in_files): $(baobabapp_in_fi
 	sed -e "s|\@VERSION\@|@VERSION@|" $< > $@
 
 $(baobabapp_DATA): $(baobabapp_in_files)
-	$(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
+if USE_NLS
+	$(AM_V_GEN) $(MSGFMT) --desktop --keyword= --keyword=Name --keyword=Comment --keyword=Keywords --template $< -d $(top_srcdir)/po -o $@
+else
+	$(AM_V_GEN) cp $< $@
+endif
 
 appdatadir = $(datadir)/metainfo
 appdata_in_files = mate-disk-usage-analyzer.appdata.xml.in
 appdata_DATA = $(appdata_in_files:.xml.in=.xml)
+
 $(appdata_DATA): $(appdata_in_files)
+if USE_NLS
 	$(AM_V_GEN) $(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@
+else
+	$(AM_V_GEN) cp $< $@
+endif
 
 gsettings_SCHEMAS = org.mate.disk-usage-analyzer.gschema.xml
 @GSETTINGS_RULES@
@@ -32,3 +56,5 @@ CLEANFILES = \
 	$(baobabapp_DATA) \
 	$(gsettings_SCHEMAS) \
 	$(appdata_DATA)
+
+-include $(top_srcdir)/git.mk
diff -pruN 1.24.0-1/baobab/data/Makefile.in 1.26.0-0ubuntu1/baobab/data/Makefile.in
--- 1.24.0-1/baobab/data/Makefile.in	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/data/Makefile.in	2021-08-05 19:45:28.000000000 +0000
@@ -0,0 +1,711 @@
+# Makefile.in generated by automake 1.16.2 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994-2020 Free Software Foundation, Inc.
+
+# This Makefile.in 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 program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
+# This file is part of MATE Utils.
+#
+# MATE Utils is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 2 of the License, or
+# (at your option) any later version.
+#
+# MATE Utils is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with MATE Utils.  If not, see <https://www.gnu.org/licenses/>.
+
+VPATH = @srcdir@
+am__is_gnu_make = { \
+  if test -z '$(MAKELEVEL)'; then \
+    false; \
+  elif test -n '$(MAKE_HOST)'; then \
+    true; \
+  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+    true; \
+  else \
+    false; \
+  fi; \
+}
+am__make_running_with_option = \
+  case $${target_option-} in \
+      ?) ;; \
+      *) echo "am__make_running_with_option: internal error: invalid" \
+              "target option '$${target_option-}' specified" >&2; \
+         exit 1;; \
+  esac; \
+  has_opt=no; \
+  sane_makeflags=$$MAKEFLAGS; \
+  if $(am__is_gnu_make); then \
+    sane_makeflags=$$MFLAGS; \
+  else \
+    case $$MAKEFLAGS in \
+      *\\[\ \	]*) \
+        bs=\\; \
+        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
+    esac; \
+  fi; \
+  skip_next=no; \
+  strip_trailopt () \
+  { \
+    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+  }; \
+  for flg in $$sane_makeflags; do \
+    test $$skip_next = yes && { skip_next=no; continue; }; \
+    case $$flg in \
+      *=*|--*) continue;; \
+        -*I) strip_trailopt 'I'; skip_next=yes;; \
+      -*I?*) strip_trailopt 'I';; \
+        -*O) strip_trailopt 'O'; skip_next=yes;; \
+      -*O?*) strip_trailopt 'O';; \
+        -*l) strip_trailopt 'l'; skip_next=yes;; \
+      -*l?*) strip_trailopt 'l';; \
+      -[dEDm]) skip_next=yes;; \
+      -[JT]) skip_next=yes;; \
+    esac; \
+    case $$flg in \
+      *$$target_option*) has_opt=yes; break;; \
+    esac; \
+  done; \
+  test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
+pkgdatadir = $(datadir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkglibexecdir = $(libexecdir)/@PACKAGE@
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = $(program_transform_name)
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+build_triplet = @build@
+host_triplet = @host@
+subdir = baobab/data
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \
+	$(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/host-cpu-c-abi.m4 \
+	$(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intlmacosx.m4 \
+	$(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
+	$(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \
+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
+	$(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \
+	$(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+	$(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
+mkinstalldirs = $(install_sh) -d
+CONFIG_HEADER = $(top_builddir)/config.h
+CONFIG_CLEAN_FILES = org.mate.disk-usage-analyzer.gschema.xml
+CONFIG_CLEAN_VPATH_FILES =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo "  GEN     " $@;
+am__v_GEN_1 = 
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 = 
+SOURCES =
+DIST_SOURCES =
+am__can_run_installinfo = \
+  case $$AM_UPDATE_INFO_DIR in \
+    n|no|NO) false;; \
+    *) (install-info --version) >/dev/null 2>&1;; \
+  esac
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+am__vpath_adj = case $$p in \
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+    *) f=$$p;; \
+  esac;
+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
+am__install_max = 40
+am__nobase_strip_setup = \
+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
+am__nobase_strip = \
+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
+am__nobase_list = $(am__nobase_strip_setup); \
+  for p in $$list; do echo "$$p $$p"; done | \
+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
+    if (++n[$$2] == $(am__install_max)) \
+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
+    END { for (dir in files) print dir, files[dir] }'
+am__base_list = \
+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+am__uninstall_files_from_dir = { \
+  test -z "$$files" \
+    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
+    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
+         $(am__cd) "$$dir" && rm -f $$files; }; \
+  }
+man1dir = $(mandir)/man1
+am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(appdatadir)" \
+	"$(DESTDIR)$(baobabappdir)"
+NROFF = nroff
+MANS = $(man_MANS)
+DATA = $(appdata_DATA) $(baobabapp_DATA)
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+am__DIST_COMMON = $(srcdir)/Makefile.in \
+	$(srcdir)/org.mate.disk-usage-analyzer.gschema.xml.in
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ACLOCAL = @ACLOCAL@
+ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@
+AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+APPLET_CFLAGS = @APPLET_CFLAGS@
+APPLET_LIBS = @APPLET_LIBS@
+AR = @AR@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+CC = @CC@
+CCDEPMODE = @CCDEPMODE@
+CFLAGS = @CFLAGS@
+CPP = @CPP@
+CPPFLAGS = @CPPFLAGS@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+CXXDEPMODE = @CXXDEPMODE@
+CXXFLAGS = @CXXFLAGS@
+CYGPATH_W = @CYGPATH_W@
+DEFS = @DEFS@
+DEPDIR = @DEPDIR@
+DLLTOOL = @DLLTOOL@
+DSYMUTIL = @DSYMUTIL@
+DUMPBIN = @DUMPBIN@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+EGREP = @EGREP@
+EXEEXT = @EXEEXT@
+FGREP = @FGREP@
+GDICT_DEBUG_CFLAGS = @GDICT_DEBUG_CFLAGS@
+GDICT_MAJOR_VERSION = @GDICT_MAJOR_VERSION@
+GDICT_MICRO_VERSION = @GDICT_MICRO_VERSION@
+GDICT_MINOR_VERSION = @GDICT_MINOR_VERSION@
+GDICT_VERSION = @GDICT_VERSION@
+GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
+GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
+GIO_CFLAGS = @GIO_CFLAGS@
+GIO_LIBS = @GIO_LIBS@
+GIO_UNIX_CFLAGS = @GIO_UNIX_CFLAGS@
+GIO_UNIX_LIBS = @GIO_UNIX_LIBS@
+GLIB_CFLAGS = @GLIB_CFLAGS@
+GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
+GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@
+GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
+GLIB_LIBS = @GLIB_LIBS@
+GLIB_MKENUMS = @GLIB_MKENUMS@
+GMSGFMT = @GMSGFMT@
+GMSGFMT_015 = @GMSGFMT_015@
+GREP = @GREP@
+GREP_COMMAND = @GREP_COMMAND@
+GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@
+GTHREAD_CFLAGS = @GTHREAD_CFLAGS@
+GTHREAD_LIBS = @GTHREAD_LIBS@
+GTKDOC_CHECK = @GTKDOC_CHECK@
+GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
+GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
+GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
+GTKDOC_MKPDF = @GTKDOC_MKPDF@
+GTKDOC_REBASE = @GTKDOC_REBASE@
+GTK_CFLAGS = @GTK_CFLAGS@
+GTK_LIBS = @GTK_LIBS@
+GTK_REQUIRED = @GTK_REQUIRED@
+HELP_DIR = @HELP_DIR@
+HTML_DIR = @HTML_DIR@
+INKSCAPE = @INKSCAPE@
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+INTLLIBS = @INTLLIBS@
+INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
+ITSTOOL = @ITSTOOL@
+LD = @LD@
+LDFLAGS = @LDFLAGS@
+LIBCANBERRA_GTK_CFLAGS = @LIBCANBERRA_GTK_CFLAGS@
+LIBCANBERRA_GTK_LIBS = @LIBCANBERRA_GTK_LIBS@
+LIBEGG_CFLAGS = @LIBEGG_CFLAGS@
+LIBEGG_LIBS = @LIBEGG_LIBS@
+LIBGDICT_CFLAGS = @LIBGDICT_CFLAGS@
+LIBGDICT_LIBS = @LIBGDICT_LIBS@
+LIBGDICT_LT_VERSION = @LIBGDICT_LT_VERSION@
+LIBGTOP_CFLAGS = @LIBGTOP_CFLAGS@
+LIBGTOP_LIBS = @LIBGTOP_LIBS@
+LIBICONV = @LIBICONV@
+LIBINTL = @LIBINTL@
+LIBOBJS = @LIBOBJS@
+LIBS = @LIBS@
+LIBTOOL = @LIBTOOL@
+LIPO = @LIPO@
+LN_S = @LN_S@
+LTLIBICONV = @LTLIBICONV@
+LTLIBINTL = @LTLIBINTL@
+LTLIBOBJS = @LTLIBOBJS@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
+MAKEINFO = @MAKEINFO@
+MANIFEST_TOOL = @MANIFEST_TOOL@
+MKDIR_P = @MKDIR_P@
+MSGFMT = @MSGFMT@
+MSGMERGE = @MSGMERGE@
+MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@
+NM = @NM@
+NMEDIT = @NMEDIT@
+OBJDUMP = @OBJDUMP@
+OBJEXT = @OBJEXT@
+OTOOL = @OTOOL@
+OTOOL64 = @OTOOL64@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_URL = @PACKAGE_URL@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+PKG_CONFIG = @PKG_CONFIG@
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
+POSUB = @POSUB@
+RANLIB = @RANLIB@
+RSVG_CONVERT = @RSVG_CONVERT@
+SED = @SED@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+STRIP = @STRIP@
+UDISKS2_CFLAGS = @UDISKS2_CFLAGS@
+UDISKS2_LIBS = @UDISKS2_LIBS@
+USE_NLS = @USE_NLS@
+VERSION = @VERSION@
+WARN_CFLAGS = @WARN_CFLAGS@
+XGETTEXT = @XGETTEXT@
+XGETTEXT_015 = @XGETTEXT_015@
+XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
+XMKMF = @XMKMF@
+XMLLINT = @XMLLINT@
+XSHAPE_CFLAGS = @XSHAPE_CFLAGS@
+XSHAPE_LIBS = @XSHAPE_LIBS@
+X_CFLAGS = @X_CFLAGS@
+X_EXTRA_LIBS = @X_EXTRA_LIBS@
+X_LIBS = @X_LIBS@
+X_PRE_LIBS = @X_PRE_LIBS@
+YELP_LC_DIST = @YELP_LC_DIST@
+YELP_LC_MEDIA_LINKS = @YELP_LC_MEDIA_LINKS@
+Z_LIBS = @Z_LIBS@
+abs_builddir = @abs_builddir@
+abs_srcdir = @abs_srcdir@
+abs_top_builddir = @abs_top_builddir@
+abs_top_srcdir = @abs_top_srcdir@
+ac_ct_AR = @ac_ct_AR@
+ac_ct_CC = @ac_ct_CC@
+ac_ct_CXX = @ac_ct_CXX@
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+am__include = @am__include@
+am__leading_dot = @am__leading_dot@
+am__quote = @am__quote@
+am__tar = @am__tar@
+am__untar = @am__untar@
+bindir = @bindir@
+build = @build@
+build_alias = @build_alias@
+build_cpu = @build_cpu@
+build_os = @build_os@
+build_vendor = @build_vendor@
+builddir = @builddir@
+datadir = @datadir@
+datarootdir = @datarootdir@
+docdir = @docdir@
+dvidir = @dvidir@
+exec_prefix = @exec_prefix@
+gsettingsschemadir = @gsettingsschemadir@
+host = @host@
+host_alias = @host_alias@
+host_cpu = @host_cpu@
+host_os = @host_os@
+host_vendor = @host_vendor@
+htmldir = @htmldir@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+libdir = @libdir@
+libexecdir = @libexecdir@
+localedir = @localedir@
+localstatedir = @localstatedir@
+mandir = @mandir@
+mkdir_p = @mkdir_p@
+oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+psdir = @psdir@
+runstatedir = @runstatedir@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+srcdir = @srcdir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+top_build_prefix = @top_build_prefix@
+top_builddir = @top_builddir@
+top_srcdir = @top_srcdir@
+baobabappdir = $(datadir)/applications
+baobabapp_in_files = mate-disk-usage-analyzer.desktop.in
+baobabapp_DATA = $(baobabapp_in_files:.desktop.in=.desktop)
+appdatadir = $(datadir)/metainfo
+appdata_in_files = mate-disk-usage-analyzer.appdata.xml.in
+appdata_DATA = $(appdata_in_files:.xml.in=.xml)
+gsettings_SCHEMAS = org.mate.disk-usage-analyzer.gschema.xml
+man_MANS = mate-disk-usage-analyzer.1
+EXTRA_DIST = \
+	baobab-main-window.ui \
+	baobab-dialog-scan-props.ui \
+	mate-disk-usage-analyzer.desktop.in.in \
+	$(appdata_in_files) \
+	$(man_MANS) \
+	org.mate.disk-usage-analyzer.gresource.xml
+
+CLEANFILES = \
+	$(baobabapp_in_files) \
+	$(baobabapp_DATA) \
+	$(gsettings_SCHEMAS) \
+	$(appdata_DATA)
+
+all: all-am
+
+.SUFFIXES:
+$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
+	@for dep in $?; do \
+	  case '$(am__configure_deps)' in \
+	    *$$dep*) \
+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
+	        && { if test -f $@; then exit 0; else break; fi; }; \
+	      exit 1;; \
+	  esac; \
+	done; \
+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign baobab/data/Makefile'; \
+	$(am__cd) $(top_srcdir) && \
+	  $(AUTOMAKE) --foreign baobab/data/Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+	@case '$?' in \
+	  *config.status*) \
+	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
+	  *) \
+	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
+	esac;
+
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+
+$(top_srcdir)/configure:  $(am__configure_deps)
+	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
+	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(am__aclocal_m4_deps):
+org.mate.disk-usage-analyzer.gschema.xml: $(top_builddir)/config.status $(srcdir)/org.mate.disk-usage-analyzer.gschema.xml.in
+	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
+
+mostlyclean-libtool:
+	-rm -f *.lo
+
+clean-libtool:
+	-rm -rf .libs _libs
+install-man1: $(man_MANS)
+	@$(NORMAL_INSTALL)
+	@list1=''; \
+	list2='$(man_MANS)'; \
+	test -n "$(man1dir)" \
+	  && test -n "`echo $$list1$$list2`" \
+	  || exit 0; \
+	echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
+	$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
+	{ for i in $$list1; do echo "$$i"; done;  \
+	if test -n "$$list2"; then \
+	  for i in $$list2; do echo "$$i"; done \
+	    | sed -n '/\.1[a-z]*$$/p'; \
+	fi; \
+	} | while read p; do \
+	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
+	  echo "$$d$$p"; echo "$$p"; \
+	done | \
+	sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
+	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
+	sed 'N;N;s,\n, ,g' | { \
+	list=; while read file base inst; do \
+	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \
+	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
+	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
+	  fi; \
+	done; \
+	for i in $$list; do echo "$$i"; done | $(am__base_list) | \
+	while read files; do \
+	  test -z "$$files" || { \
+	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
+	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
+	done; }
+
+uninstall-man1:
+	@$(NORMAL_UNINSTALL)
+	@list=''; test -n "$(man1dir)" || exit 0; \
+	files=`{ for i in $$list; do echo "$$i"; done; \
+	l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
+	  sed -n '/\.1[a-z]*$$/p'; \
+	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
+	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
+	dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
+install-appdataDATA: $(appdata_DATA)
+	@$(NORMAL_INSTALL)
+	@list='$(appdata_DATA)'; test -n "$(appdatadir)" || list=; \
+	if test -n "$$list"; then \
+	  echo " $(MKDIR_P) '$(DESTDIR)$(appdatadir)'"; \
+	  $(MKDIR_P) "$(DESTDIR)$(appdatadir)" || exit 1; \
+	fi; \
+	for p in $$list; do \
+	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+	  echo "$$d$$p"; \
+	done | $(am__base_list) | \
+	while read files; do \
+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appdatadir)'"; \
+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(appdatadir)" || exit $$?; \
+	done
+
+uninstall-appdataDATA:
+	@$(NORMAL_UNINSTALL)
+	@list='$(appdata_DATA)'; test -n "$(appdatadir)" || list=; \
+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
+	dir='$(DESTDIR)$(appdatadir)'; $(am__uninstall_files_from_dir)
+install-baobabappDATA: $(baobabapp_DATA)
+	@$(NORMAL_INSTALL)
+	@list='$(baobabapp_DATA)'; test -n "$(baobabappdir)" || list=; \
+	if test -n "$$list"; then \
+	  echo " $(MKDIR_P) '$(DESTDIR)$(baobabappdir)'"; \
+	  $(MKDIR_P) "$(DESTDIR)$(baobabappdir)" || exit 1; \
+	fi; \
+	for p in $$list; do \
+	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+	  echo "$$d$$p"; \
+	done | $(am__base_list) | \
+	while read files; do \
+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(baobabappdir)'"; \
+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(baobabappdir)" || exit $$?; \
+	done
+
+uninstall-baobabappDATA:
+	@$(NORMAL_UNINSTALL)
+	@list='$(baobabapp_DATA)'; test -n "$(baobabappdir)" || list=; \
+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
+	dir='$(DESTDIR)$(baobabappdir)'; $(am__uninstall_files_from_dir)
+tags TAGS:
+
+ctags CTAGS:
+
+cscope cscopelist:
+
+
+distdir: $(BUILT_SOURCES)
+	$(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
+	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+	list='$(DISTFILES)'; \
+	  dist_files=`for file in $$list; do echo $$file; done | \
+	  sed -e "s|^$$srcdirstrip/||;t" \
+	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
+	case $$dist_files in \
+	  */*) $(MKDIR_P) `echo "$$dist_files" | \
+			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
+			   sort -u` ;; \
+	esac; \
+	for file in $$dist_files; do \
+	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+	  if test -d $$d/$$file; then \
+	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
+	    if test -d "$(distdir)/$$file"; then \
+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+	    fi; \
+	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+	    fi; \
+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+	  else \
+	    test -f "$(distdir)/$$file" \
+	    || cp -p $$d/$$file "$(distdir)/$$file" \
+	    || exit 1; \
+	  fi; \
+	done
+check-am: all-am
+check: check-am
+all-am: Makefile $(MANS) $(DATA)
+installdirs:
+	for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(baobabappdir)"; do \
+	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
+	done
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+	if test -z '$(STRIP)'; then \
+	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	      install; \
+	else \
+	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
+	fi
+mostlyclean-generic:
+
+clean-generic:
+	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+
+distclean-generic:
+	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+
+maintainer-clean-generic:
+	@echo "This command is intended for maintainers to use"
+	@echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-generic clean-libtool mostlyclean-am
+
+distclean: distclean-am
+	-rm -f Makefile
+distclean-am: clean-am distclean-generic
+
+dvi: dvi-am
+
+dvi-am:
+
+html: html-am
+
+html-am:
+
+info: info-am
+
+info-am:
+
+install-data-am: install-appdataDATA install-baobabappDATA install-man
+
+install-dvi: install-dvi-am
+
+install-dvi-am:
+
+install-exec-am:
+
+install-html: install-html-am
+
+install-html-am:
+
+install-info: install-info-am
+
+install-info-am:
+
+install-man: install-man1
+
+install-pdf: install-pdf-am
+
+install-pdf-am:
+
+install-ps: install-ps-am
+
+install-ps-am:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+	-rm -f Makefile
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
+
+pdf: pdf-am
+
+pdf-am:
+
+ps: ps-am
+
+ps-am:
+
+uninstall-am: uninstall-appdataDATA uninstall-baobabappDATA \
+	uninstall-man
+
+uninstall-man: uninstall-man1
+
+.MAKE: install-am install-strip
+
+.PHONY: all all-am check check-am clean clean-generic clean-libtool \
+	cscopelist-am ctags-am distclean distclean-generic \
+	distclean-libtool distdir dvi dvi-am html html-am info info-am \
+	install install-am install-appdataDATA install-baobabappDATA \
+	install-data install-data-am install-dvi install-dvi-am \
+	install-exec install-exec-am install-html install-html-am \
+	install-info install-info-am install-man install-man1 \
+	install-pdf install-pdf-am install-ps install-ps-am \
+	install-strip installcheck installcheck-am installdirs \
+	maintainer-clean maintainer-clean-generic mostlyclean \
+	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+	tags-am uninstall uninstall-am uninstall-appdataDATA \
+	uninstall-baobabappDATA uninstall-man uninstall-man1
+
+.PRECIOUS: Makefile
+
+
+$(baobabapp_in_files): $(baobabapp_in_files:.desktop.in=.desktop.in.in)
+	sed -e "s|\@VERSION\@|@VERSION@|" $< > $@
+
+$(baobabapp_DATA): $(baobabapp_in_files)
+@USE_NLS_TRUE@	$(AM_V_GEN) $(MSGFMT) --desktop --keyword= --keyword=Name --keyword=Comment --keyword=Keywords --template $< -d $(top_srcdir)/po -o $@
+@USE_NLS_FALSE@	$(AM_V_GEN) cp $< $@
+
+$(appdata_DATA): $(appdata_in_files)
+@USE_NLS_TRUE@	$(AM_V_GEN) $(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@
+@USE_NLS_FALSE@	$(AM_V_GEN) cp $< $@
+@GSETTINGS_RULES@
+
+-include $(top_srcdir)/git.mk
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff -pruN 1.24.0-1/baobab/help/af/af.po 1.26.0-0ubuntu1/baobab/help/af/af.po
--- 1.24.0-1/baobab/help/af/af.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/af/af.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,10 +1,11 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
 "Language-Team: Afrikaans (https://www.transifex.com/mate/teams/13566/af/)\n"
@@ -36,7 +37,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -56,80 +57,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -203,7 +135,7 @@ msgstr "Inleiding"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -231,7 +163,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -263,14 +195,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -288,7 +220,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -365,7 +297,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -458,7 +390,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -496,7 +428,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -744,3 +676,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/af/index.docbook 1.26.0-0ubuntu1/baobab/help/af/index.docbook
--- 1.24.0-1/baobab/help/af/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/af/index.docbook	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="af">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>Inleiding</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Gebruik</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Voorkeure</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/af/legal.xml 1.26.0-0ubuntu1/baobab/help/af/legal.xml
--- 1.24.0-1/baobab/help/af/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/af/legal.xml	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/am/am.po 1.26.0-0ubuntu1/baobab/help/am/am.po
--- 1.24.0-1/baobab/help/am/am.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/am/am.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,10 +1,11 @@
+# 
 # Translators:
 # samson <sambelet@yahoo.com>, 2018
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: samson <sambelet@yahoo.com>, 2018\n"
 "Language-Team: Amharic (https://www.transifex.com/mate/teams/13566/am/)\n"
@@ -33,7 +34,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -53,80 +54,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -200,7 +132,7 @@ msgstr "መግቢያ"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -228,7 +160,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -260,14 +192,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -285,7 +217,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -362,7 +294,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -455,7 +387,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -493,7 +425,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -741,3 +673,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/am/index.docbook 1.26.0-0ubuntu1/baobab/help/am/index.docbook
--- 1.24.0-1/baobab/help/am/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/am/index.docbook	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="am">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>መግቢያ</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>አጠቃቀም </title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>ምርጫዎች</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/am/legal.xml 1.26.0-0ubuntu1/baobab/help/am/legal.xml
--- 1.24.0-1/baobab/help/am/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/am/legal.xml	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/an/an.po 1.26.0-0ubuntu1/baobab/help/an/an.po
--- 1.24.0-1/baobab/help/an/an.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/an/an.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,10 +1,11 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
 "Language-Team: Aragonese (https://www.transifex.com/mate/teams/13566/an/)\n"
@@ -36,7 +37,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -56,80 +57,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -203,7 +135,7 @@ msgstr ""
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -231,7 +163,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -263,14 +195,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -288,7 +220,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -365,7 +297,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -458,7 +390,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -496,7 +428,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -744,3 +676,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/an/index.docbook 1.26.0-0ubuntu1/baobab/help/an/index.docbook
--- 1.24.0-1/baobab/help/an/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/an/index.docbook	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="an">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title lang="en">Introduction</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title lang="en">Usage</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Preferencias</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/an/legal.xml 1.26.0-0ubuntu1/baobab/help/an/legal.xml
--- 1.24.0-1/baobab/help/an/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/an/legal.xml	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/ar/ar.po 1.26.0-0ubuntu1/baobab/help/ar/ar.po
--- 1.24.0-1/baobab/help/ar/ar.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/ar/ar.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,3 +1,4 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # Mosaab Alzoubi <moceap@hotmail.com>, 2018
@@ -8,7 +9,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Ahmad Dakhlallah <andy.afef@gmail.com>, 2019\n"
 "Language-Team: Arabic (https://www.transifex.com/mate/teams/13566/ar/)\n"
@@ -39,7 +40,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -59,80 +60,11 @@ msgstr "مشروع دليل MATE"
 msgid "GNOME Documentation Project"
 msgstr "مشروع دليل GNOME"
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -206,7 +138,7 @@ msgstr "مقدمة"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -234,7 +166,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -266,14 +198,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -291,7 +223,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -368,7 +300,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -461,7 +393,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -499,7 +431,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -747,3 +679,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/ar/index.docbook 1.26.0-0ubuntu1/baobab/help/ar/index.docbook
--- 1.24.0-1/baobab/help/ar/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/ar/index.docbook	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="ar">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername>مشروع دليل MATE</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername>مشروع دليل GNOME</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title>آراء وانطباعات</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>مقدمة</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>الاستخدام</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>تفضيلات</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/ar/legal.xml 1.26.0-0ubuntu1/baobab/help/ar/legal.xml
--- 1.24.0-1/baobab/help/ar/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/ar/legal.xml	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/as/as.po 1.26.0-0ubuntu1/baobab/help/as/as.po
--- 1.24.0-1/baobab/help/as/as.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/as/as.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,10 +1,11 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
 "Language-Team: Assamese (https://www.transifex.com/mate/teams/13566/as/)\n"
@@ -33,7 +34,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -53,80 +54,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -200,7 +132,7 @@ msgstr "ভূমিকা"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -228,7 +160,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -260,14 +192,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -285,7 +217,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -362,7 +294,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -455,7 +387,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -493,7 +425,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -741,3 +673,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/as/index.docbook 1.26.0-0ubuntu1/baobab/help/as/index.docbook
--- 1.24.0-1/baobab/help/as/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/as/index.docbook	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="as">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>ভূমিকা</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Usage</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>পছন্দসমূহ</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/as/legal.xml 1.26.0-0ubuntu1/baobab/help/as/legal.xml
--- 1.24.0-1/baobab/help/as/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/as/legal.xml	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/ast/ast.po 1.26.0-0ubuntu1/baobab/help/ast/ast.po
--- 1.24.0-1/baobab/help/ast/ast.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/ast/ast.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,13 +1,14 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
-# Ḷḷumex03 <tornes@opmbx.org>, 2018
+# Ḷḷumex03, 2018
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
-"Last-Translator: Ḷḷumex03 <tornes@opmbx.org>, 2018\n"
+"Last-Translator: Ḷḷumex03, 2018\n"
 "Language-Team: Asturian (https://www.transifex.com/mate/teams/13566/ast/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -34,7 +35,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -54,80 +55,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -201,7 +133,7 @@ msgstr "Introducción"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -229,7 +161,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -261,14 +193,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -286,7 +218,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -363,7 +295,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -456,7 +388,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -494,7 +426,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -742,3 +674,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/ast/index.docbook 1.26.0-0ubuntu1/baobab/help/ast/index.docbook
--- 1.24.0-1/baobab/help/ast/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/ast/index.docbook	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="ast">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>Introducción</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Usu</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Preferencies</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/ast/legal.xml 1.26.0-0ubuntu1/baobab/help/ast/legal.xml
--- 1.24.0-1/baobab/help/ast/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/ast/legal.xml	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/az/az.po 1.26.0-0ubuntu1/baobab/help/az/az.po
--- 1.24.0-1/baobab/help/az/az.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/az/az.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,10 +1,11 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
 "Language-Team: Azerbaijani (https://www.transifex.com/mate/teams/13566/az/)\n"
@@ -37,7 +38,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -57,80 +58,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -204,7 +136,7 @@ msgstr ""
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -232,7 +164,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -264,14 +196,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -289,7 +221,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -366,7 +298,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -459,7 +391,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -497,7 +429,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -745,3 +677,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/az/index.docbook 1.26.0-0ubuntu1/baobab/help/az/index.docbook
--- 1.24.0-1/baobab/help/az/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/az/index.docbook	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="az">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title lang="en">Introduction</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title lang="en">Usage</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Qurğular</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/az/legal.xml 1.26.0-0ubuntu1/baobab/help/az/legal.xml
--- 1.24.0-1/baobab/help/az/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/az/legal.xml	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/be/be.po 1.26.0-0ubuntu1/baobab/help/be/be.po
--- 1.24.0-1/baobab/help/be/be.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/be/be.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,3 +1,4 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # Mihail Varantsou <meequz@gmail.com>, 2018
@@ -5,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Mihail Varantsou <meequz@gmail.com>, 2018\n"
 "Language-Team: Belarusian (https://www.transifex.com/mate/teams/13566/be/)\n"
@@ -36,7 +37,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -56,80 +57,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -203,7 +135,7 @@ msgstr "Уводзіны"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -231,7 +163,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -263,14 +195,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -288,7 +220,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -365,7 +297,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -458,7 +390,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -496,7 +428,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -744,3 +676,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/be/index.docbook 1.26.0-0ubuntu1/baobab/help/be/index.docbook
--- 1.24.0-1/baobab/help/be/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/be/index.docbook	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="be">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>Уводзіны</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>доля</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Настáўленні</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/be/legal.xml 1.26.0-0ubuntu1/baobab/help/be/legal.xml
--- 1.24.0-1/baobab/help/be/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/be/legal.xml	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/bg/bg.po 1.26.0-0ubuntu1/baobab/help/bg/bg.po
--- 1.24.0-1/baobab/help/bg/bg.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/bg/bg.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,3 +1,4 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # Любомир Василев, 2018
@@ -7,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Замфир Йончев <zamfir.yonchev@gmail.com>, 2018\n"
 "Language-Team: Bulgarian (https://www.transifex.com/mate/teams/13566/bg/)\n"
@@ -44,7 +45,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -64,80 +65,11 @@ msgstr "Проектът за докум
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -211,7 +143,7 @@ msgstr "Въведение"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -239,7 +171,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -271,14 +203,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -296,7 +228,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -373,7 +305,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -466,7 +398,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -504,7 +436,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -752,3 +684,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/bg/index.docbook 1.26.0-0ubuntu1/baobab/help/bg/index.docbook
--- 1.24.0-1/baobab/help/bg/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/bg/index.docbook	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="bg">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername>Проектът за документация на MATE</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title>Обратна връзка</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>Въведение</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Употреба</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Настройки</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/bg/legal.xml 1.26.0-0ubuntu1/baobab/help/bg/legal.xml
--- 1.24.0-1/baobab/help/bg/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/bg/legal.xml	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/bn/bn.po 1.26.0-0ubuntu1/baobab/help/bn/bn.po
--- 1.24.0-1/baobab/help/bn/bn.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/bn/bn.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,10 +1,11 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
 "Language-Team: Bengali (https://www.transifex.com/mate/teams/13566/bn/)\n"
@@ -38,7 +39,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -58,80 +59,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -205,7 +137,7 @@ msgstr "ভূমিকা"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -233,7 +165,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -265,14 +197,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -290,7 +222,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -367,7 +299,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -460,7 +392,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -498,7 +430,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -746,3 +678,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/bn/index.docbook 1.26.0-0ubuntu1/baobab/help/bn/index.docbook
--- 1.24.0-1/baobab/help/bn/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/bn/index.docbook	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="bn">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>ভূমিকা</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>ব্যবহার প্রণালী</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>পছন্দতালিকা</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/bn/legal.xml 1.26.0-0ubuntu1/baobab/help/bn/legal.xml
--- 1.24.0-1/baobab/help/bn/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/bn/legal.xml	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/bn_IN/bn_IN.po 1.26.0-0ubuntu1/baobab/help/bn_IN/bn_IN.po
--- 1.24.0-1/baobab/help/bn_IN/bn_IN.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/bn_IN/bn_IN.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,3 +1,4 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # umesh agarwal <umesh.agarwal1@gmail.com>, 2018
@@ -5,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: umesh agarwal <umesh.agarwal1@gmail.com>, 2018\n"
 "Language-Team: Bengali (India) (https://www.transifex.com/mate/teams/13566/bn_IN/)\n"
@@ -37,7 +38,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -57,80 +58,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -204,7 +136,7 @@ msgstr "ভূমিকা"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -232,7 +164,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -264,14 +196,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -289,7 +221,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -366,7 +298,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -459,7 +391,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -497,7 +429,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -745,3 +677,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/bn_IN/index.docbook 1.26.0-0ubuntu1/baobab/help/bn_IN/index.docbook
--- 1.24.0-1/baobab/help/bn_IN/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/bn_IN/index.docbook	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="bn-IN">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>ভূমিকা</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>ব্যবহার প্রণালী</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>प्राथमिकताएं</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/bn_IN/legal.xml 1.26.0-0ubuntu1/baobab/help/bn_IN/legal.xml
--- 1.24.0-1/baobab/help/bn_IN/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/bn_IN/legal.xml	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/br/br.po 1.26.0-0ubuntu1/baobab/help/br/br.po
--- 1.24.0-1/baobab/help/br/br.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/br/br.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,3 +1,4 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # Alan Monfort <alan.monfort@free.fr>, 2018
@@ -5,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Alan Monfort <alan.monfort@free.fr>, 2018\n"
 "Language-Team: Breton (https://www.transifex.com/mate/teams/13566/br/)\n"
@@ -34,7 +35,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -54,80 +55,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -201,7 +133,7 @@ msgstr ""
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -229,7 +161,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -261,14 +193,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -286,7 +218,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -363,7 +295,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -456,7 +388,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -494,7 +426,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -742,3 +674,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/br/index.docbook 1.26.0-0ubuntu1/baobab/help/br/index.docbook
--- 1.24.0-1/baobab/help/br/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/br/index.docbook	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="br">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title lang="en">Introduction</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Arver</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Gwellvezioù</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/br/legal.xml 1.26.0-0ubuntu1/baobab/help/br/legal.xml
--- 1.24.0-1/baobab/help/br/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/br/legal.xml	2021-08-05 19:46:17.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/bs/bs.po 1.26.0-0ubuntu1/baobab/help/bs/bs.po
--- 1.24.0-1/baobab/help/bs/bs.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/bs/bs.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,3 +1,4 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # Sky Lion <xskylionx@gmail.com>, 2018
@@ -5,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Sky Lion <xskylionx@gmail.com>, 2018\n"
 "Language-Team: Bosnian (https://www.transifex.com/mate/teams/13566/bs/)\n"
@@ -34,7 +35,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -54,80 +55,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -201,7 +133,7 @@ msgstr ""
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -229,7 +161,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -261,14 +193,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -286,7 +218,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -363,7 +295,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -456,7 +388,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -494,7 +426,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -742,3 +674,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/bs/index.docbook 1.26.0-0ubuntu1/baobab/help/bs/index.docbook
--- 1.24.0-1/baobab/help/bs/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/bs/index.docbook	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="bs">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title lang="en">Introduction</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title lang="en">Usage</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Postavke</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/bs/legal.xml 1.26.0-0ubuntu1/baobab/help/bs/legal.xml
--- 1.24.0-1/baobab/help/bs/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/bs/legal.xml	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
Binary files 1.24.0-1/baobab/help/C/figures/baobab_fullscan.png and 1.26.0-0ubuntu1/baobab/help/C/figures/baobab_fullscan.png differ
Binary files 1.24.0-1/baobab/help/C/figures/baobab_prefs.png and 1.26.0-0ubuntu1/baobab/help/C/figures/baobab_prefs.png differ
Binary files 1.24.0-1/baobab/help/C/figures/baobab_remote.png and 1.26.0-0ubuntu1/baobab/help/C/figures/baobab_remote.png differ
Binary files 1.24.0-1/baobab/help/C/figures/baobab_window.png and 1.26.0-0ubuntu1/baobab/help/C/figures/baobab_window.png differ
diff -pruN 1.24.0-1/baobab/help/C/index.docbook 1.26.0-0ubuntu1/baobab/help/C/index.docbook
--- 1.24.0-1/baobab/help/C/index.docbook	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/C/index.docbook	2021-08-05 19:43:41.000000000 +0000
@@ -28,7 +28,7 @@
     </abstract>
 
     <copyright lang="en"> 
-      <year>2015-2020</year> 
+      <year>2015-2021</year>
       <holder>MATE Documentation Project</holder>
     </copyright>
     <copyright> 
@@ -54,9 +54,9 @@
 
    <authorgroup>
       <author role="maintainer" lang="en"> 
-	<surname>MATE-Dokumentationsteam</surname> 
+	<surname>MATE Documentation Team</surname>
 	<affiliation> 
-	  <orgname>Mate desktop</orgname> 
+	  <orgname>MATE Desktop</orgname> 
 	</affiliation> 
       </author>
    <author> 
@@ -138,7 +138,7 @@
     <title>Introduction</title> 
 
       <para><application>&app;</application> is a graphical, menu-driven
-      application to analyze disk usage in any Mate environment. <application>&app;</application> can easily scan
+      application to analyze disk usage in any MATE environment. <application>&app;</application> can easily scan
        either the whole filesystem tree, or a specific user-requested directory 
        branch (local or remote). </para>
        <para>It also auto-detects in real-time any changes 
@@ -154,7 +154,7 @@
 
     <para><application>&app;</application> can be started in three ways:</para>
 	 <itemizedlist>
-    <listitem><para>from Mate menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    <listitem><para>from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
     		</listitem>
     <listitem><para>from a terminal window;</para>
     		</listitem>
@@ -167,8 +167,8 @@
   
 <para><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
 <para></para> 
-	<para>If launched from Mate menu, <application>&app;</application> starts and remains in a stand-by state, waiting for user action.</para> 
-    <para>When you start <application>&app;</application> from the Mate Menu, the following window is displayed.</para>
+	<para>If launched from MATE menu, <application>&app;</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para>When you start <application>&app;</application> from the MATE Menu, the following window is displayed.</para>
 
     <!-- ==== Figure ==== -->
       <figure id="baobab-fig"> 
diff -pruN 1.24.0-1/baobab/help/ca/ca.po 1.26.0-0ubuntu1/baobab/help/ca/ca.po
--- 1.24.0-1/baobab/help/ca/ca.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/ca/ca.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,14 +1,15 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
-# Francesc Famadas <kiski97@gmail.com>, 2018
-# Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2018
+# Francesc Famadas, 2018
+# Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2021
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
-"Last-Translator: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2018\n"
+"Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2021\n"
 "Language-Team: Catalan (https://www.transifex.com/mate/teams/13566/ca/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -38,8 +39,9 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
+"<year>2015-2021</year> <holder>Projecte de documentació de MATE</holder>"
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:34
@@ -58,121 +60,11 @@ msgstr "Projecte de documentació de MAT
 msgid "GNOME Documentation Project"
 msgstr "Projecte de documentació de GNOME"
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-"Es concedeix el permís per copiar, distribuir i / o modificar aquest "
-"document sota els termes de la GFDL (GNU Free Documentation License), versió"
-" 1.1 o qualsevol versió posterior publicada per la Free Software Foundation "
-"que tinguin les seccions invariants, i sense cap text a la portada. Podeu "
-"trobar una còpia de la GFDL en aquest <ulink type=\"help\" "
-"url=\"help:fdl\">enllaç</ulink> o bé al fitxer COPYING-DOCS que es "
-"distribueix amb aquest manual."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-"Aquest manual forma part d'una col·lecció de manuals de MATE que estan "
-"distribuïts sota la GFDL. Si voleu distribuir aquest manual per separat de "
-"la col·lecció, podeu fer-ho afegint una còpia de la llicència al manual, tal"
-" com es descriu a la secció 6 de la llicència."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-"Molts dels noms utilitzats per les empreses per distingir els seus productes"
-" i serveis es consideren marques comercials. Quan aquests noms apareixen en "
-"qualsevol documentació de MATE, i els membres del projecte de documentació "
-"de MATE en són conscients, els noms tenen lletres majúscules o bé comencen "
-"en majúscules."
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-"EL DOCUMENT S'OFEREIX «TAL COM ÉS», SENSE CAP TIPUS DE GARANTIA, NI "
-"EXPLÍCITA NI IMPLÍCITA; AIXÒ INCLOU, SENSE LIMITAR-S'HI, LES GARANTIES QUE "
-"EL DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT NO TINGUI DEFECTES, SIGUI "
-"COMERCIALITZABLE, SIGUI ADEQUAT PER A UN ÚS CONCRET O NO INFRINGEIXI CAP "
-"LLEI. TOT EL RISC PEL QUE FA A LA QUALITAT, EXACTITUD I RENDIMENT DEL "
-"DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT ÉS VOSTRE. EN CAS QUE EL "
-"DOCUMENT RESULTÉS DEFECTUÓS EN QUALSEVOL ASPECTE, VÓS (NO PAS L'ESCRIPTOR "
-"INICIAL, L'AUTOR O CAP ALTRE COL·LABORADOR) ASSUMIU TOT EL COST DE "
-"MANTENIMENT, REPARACIÓ O CORRECCIÓ. AQUESTA RENÚNCIA DE GARANTIA CONSTITUEIX"
-" UNA PART ESSENCIAL D'AQUESTA LLICÈNCIA. NO S'AUTORITZA L'ÚS DE CAP DOCUMENT"
-" O VERSIÓ MODIFICADA DEL DOCUMENT EXCEPTE SOTA AQUESTA RENÚNCIA DE GARANTIA;"
-" I"
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-"EN CAP CAS I SOTA CAP INTERPRETACIÓ LEGAL, JA SIGUI PER AGREUJAMENT "
-"(INCLOENT-HI LA NEGLIGÈNCIA), CONTRACTE O ALTRE CAS, L'AUTOR, L'ESCRIPTOR "
-"ORIGINAL, QUALSEVOL DELS COL·LABORADORS O DISTRIBUÏDORS DEL DOCUMENT O UNA "
-"VERSIÓ MODIFICADA DEL DOCUMENT NI CAP PROVEÏDOR D'AQUESTES PARTS NO SERAN "
-"RESPONSABLES DAVANT DE NINGÚ PER CAP DANY DIRECTE, INDIRECTE, ESPECIAL, "
-"ACCIDENTAL O CONSECUTIU DE QUALSEVOL TIPUS; AIXÒ INCLOU, SENSE LIMITAR-S'HI,"
-" ELS DANYS PER PÈRDUA DE CLIENTS, INTERRUPCIONS DE LA FEINA, FALLADA O MAL "
-"FUNCIONAMENT DE L'ORDINADOR, O QUALSEVOL ALTRA PÈRDUA O DANY RELACIONAT AMB "
-"L'ÚS DEL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT, FINS I TOT SI "
-"S'HA INFORMAT AQUESTA PART DE LA POSSIBILITAT D'AQUESTS DANYS."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-"EL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT S'OFEREIXEN SOTA ELS "
-"TERMES DE LA LLICÈNCIA DE DOCUMENTACIÓ LLIURE DE GNU, TENINT EN COMPTE QUE: "
-"<_:orderedlist-1/>"
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 "<surname>Equip de documentació de MATE</surname> <affiliation> "
 "<orgname>Escriptori MATE</orgname> </affiliation>"
@@ -262,7 +154,7 @@ msgstr "Introducció"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -302,7 +194,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 "des del menú de MATE "
@@ -341,21 +233,21 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
-"Si es llança des del menú de Mate, l'<application>analitzador de l'ús dels "
+"Si es llança des del menú de MATE, l'<application>nalitzador de l'ús dels "
 "discs</application> s'inicia i es manté en un estat de repòs, a l'espera "
 "d'una acció de l'usuari."
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 "Quan inicieu l'<application>analitzador de l'ús dels discs</application> des"
-" del menú de Mate, es mostra la finestra següent."
+" del menú de MATE, es mostra la finestra següent."
 
 #. (itstool) path: figure/title
 #: C/index.docbook:175
@@ -371,10 +263,10 @@ msgstr "Finestra de l'analitzador de l'
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 
 #. (itstool) path: screenshot/mediaobject
 #: C/index.docbook:177
@@ -462,10 +354,10 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 
 #. (itstool) path: screenshot/mediaobject
 #: C/index.docbook:221
@@ -593,10 +485,10 @@ msgstr "Exploració d'una carpeta remota
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 
 #. (itstool) path: screenshot/mediaobject
 #: C/index.docbook:274
@@ -639,10 +531,10 @@ msgstr "Finestra de preferències de l'a
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 
 #. (itstool) path: screenshot/mediaobject
 #: C/index.docbook:302
@@ -993,3 +885,95 @@ msgstr ""
 "que tinguin les seccions invariants, i sense cap text a la portada. Podeu "
 "trobar una còpia de la GFDL en aquest <_:ulink-1/> o bé al fitxer COPYING-"
 "DOCS que es distribueix amb aquest manual."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+"Aquest manual forma part d'una col·lecció de manuals de MATE que estan "
+"distribuïts sota la GFDL. Si voleu distribuir aquest manual per separat de "
+"la col·lecció, podeu fer-ho afegint una còpia de la llicència al manual, tal"
+" com es descriu a la secció 6 de la llicència."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+"Molts dels noms utilitzats per les empreses per distingir els seus productes"
+" i serveis es consideren marques comercials. Quan aquests noms apareixen en "
+"qualsevol documentació de MATE, i els membres del projecte de documentació "
+"de MATE en són conscients, els noms tenen lletres majúscules o bé comencen "
+"en majúscules."
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+"EL DOCUMENT S'OFEREIX «TAL COM ÉS», SENSE CAP TIPUS DE GARANTIA, NI "
+"EXPLÍCITA NI IMPLÍCITA; AIXÒ INCLOU, SENSE LIMITAR-S'HI, LES GARANTIES QUE "
+"EL DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT NO TINGUI DEFECTES, SIGUI "
+"COMERCIALITZABLE, SIGUI ADEQUAT PER A UN ÚS CONCRET O NO INFRINGEIXI CAP "
+"LLEI. TOT EL RISC PEL QUE FA A LA QUALITAT, EXACTITUD I RENDIMENT DEL "
+"DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT ÉS VOSTRE. EN CAS QUE EL "
+"DOCUMENT RESULTÉS DEFECTUÓS EN QUALSEVOL ASPECTE, VÓS (NO PAS L'ESCRIPTOR "
+"INICIAL, L'AUTOR O CAP ALTRE COL·LABORADOR) ASSUMIU TOT EL COST DE "
+"MANTENIMENT, REPARACIÓ O CORRECCIÓ. AQUESTA RENÚNCIA DE GARANTIA CONSTITUEIX"
+" UNA PART ESSENCIAL D'AQUESTA LLICÈNCIA. NO S'AUTORITZA L'ÚS DE CAP DOCUMENT"
+" O VERSIÓ MODIFICADA DEL DOCUMENT EXCEPTE SOTA AQUESTA RENÚNCIA DE GARANTIA;"
+" I"
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+"EN CAP CAS I SOTA CAP INTERPRETACIÓ LEGAL, JA SIGUI PER AGREUJAMENT "
+"(INCLOENT-HI LA NEGLIGÈNCIA), CONTRACTE O ALTRE CAS, L'AUTOR, L'ESCRIPTOR "
+"ORIGINAL, QUALSEVOL DELS COL·LABORADORS O DISTRIBUÏDORS DEL DOCUMENT O UNA "
+"VERSIÓ MODIFICADA DEL DOCUMENT NI CAP PROVEÏDOR D'AQUESTES PARTS NO SERAN "
+"RESPONSABLES DAVANT DE NINGÚ PER CAP DANY DIRECTE, INDIRECTE, ESPECIAL, "
+"ACCIDENTAL O CONSECUTIU DE QUALSEVOL TIPUS; AIXÒ INCLOU, SENSE LIMITAR-S'HI,"
+" ELS DANYS PER PÈRDUA DE CLIENTS, INTERRUPCIONS DE LA FEINA, FALLADA O MAL "
+"FUNCIONAMENT DE L'ORDINADOR, O QUALSEVOL ALTRA PÈRDUA O DANY RELACIONAT AMB "
+"L'ÚS DEL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT, FINS I TOT SI "
+"S'HA INFORMAT AQUESTA PART DE LA POSSIBILITAT D'AQUESTS DANYS."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
+"EL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT S'OFEREIXEN SOTA ELS "
+"TERMES DE LA LLICÈNCIA DE DOCUMENTACIÓ LLIURE DE GNU, TENINT EN COMPTE QUE: "
+"<_:orderedlist-1/>"
diff -pruN 1.24.0-1/baobab/help/ca/index.docbook 1.26.0-0ubuntu1/baobab/help/ca/index.docbook
--- 1.24.0-1/baobab/help/ca/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/ca/index.docbook	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,287 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="ca">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title>Manual de l'analitzador de l'ús dels discs</title>
+
+    <abstract role="description">
+      <para>L'analitzador de l'ús dels discs és un visualitzador gràfic, basat en menús, que podeu utilitzar per visualitzar i monitorar l'ús del vostre disc i l'estructura de les carpetes.</para>
+    </abstract>
+
+    <copyright lang="en"><year>2015-2021</year> <holder>Projecte de documentació de MATE</holder></copyright>
+    <copyright><year>2006</year> <holder>Fabio Marzocca</holder></copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername>Projecte de documentació de MATE</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername>Projecte de documentació de GNOME</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"><surname>Equip de documentació de MATE</surname> <affiliation> <orgname>Escriptori MATE</orgname> </affiliation></author>
+   <author><firstname>Fabio</firstname> <surname>Marzocca</surname> <affiliation> <orgname>Projecte de documentació de GNOME</orgname> <address> <email>thesaltydog@gmail.com</email> </address> </affiliation></author> 
+
+   <author role="maintainer"><firstname>Fabio</firstname> <surname>Marzocca</surname> <affiliation> <address><email>thesaltydog@gmail.com</email></address> </affiliation></author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision><revnumber>Versió 1.10 del manual de l'analitzador de l'ús dels discs</revnumber> <date>Juliol de 2015</date> <revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich</para>
+	  		<para role="publisher">Projecte de documentació de MATE</para>
+		</revdescription></revision>
+      <revision><revnumber>Versió 1.0 del manual de l'analitzador de l'ús dels discs</revnumber> <date>Abril de 2006</date> <revdescription> 
+	  		<para role="author">Emmanuele Bassi <email>ebassi@gmail.com</email></para>
+	  		<para role="publisher">Projecte de documentació de GNOME</para>
+		</revdescription></revision>
+    </revhistory> 
+
+    <releaseinfo>Aquest manual descriu la versió 1.10 de l'analitzador de l'ús dels discs.</releaseinfo> 
+    
+    <legalnotice> 
+      <title>Retroacció</title> 
+      <para>Per informar d'un error o fer un suggeriment sobre l'aplicació de l'analitzador de l'ús dels discs o d'aquest manual, seguiu les instruccions de la <ulink url="help:mate-user-guide/feedback" type="help">pàgina de retroacció de MATE</ulink>.</para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm><primary>Analitzador de l'ús dels discs</primary></indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>Introducció</title> 
+
+      <para>L'<application>analitzador de l'ús dels discs</application> és una aplicació gràfica, basada en menús, per analitzar l'ús dels discs en qualsevol entorn MATE. L'<application>analitzador de l'ús dels discs</application> pot explorar fàcilment tot l'arbre del sistema de fitxers, o una branca específica del directori sol·licitat per l'usuari (local o remot).</para>
+       <para>També detecta automàticament en temps real els canvis realitzats al vostre directori d'usuari, així com en qualsevol dispositiu muntat o desmuntat. L'<application>analitzador de l'ús dels discs</application> també proporciona una finestra gràfica de l'arbre d'assignació per a cada carpeta seleccionada.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title>Primers passos</title>
+
+    <para>L'<application>analitzador de l'ús dels discs</application> es pot iniciar de tres maneres:</para>
+	 <itemizedlist>
+    <listitem><para>des del menú de MATE <menuchoice><guimenu>Aplicacions</guimenu><guimenuitem>Accessoris</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para>des de la finestra d'un terminal;</para>
+    		</listitem>
+    <listitem><para>des d'«Obre amb...» de Caja;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para>Si voleu iniciar l'<application>analitzador de l'ús dels discs</application> des d'un terminal, només cal que teclegeu:</para> 
+  
+<para><command>mate-disk-usage-analyzer &lt;tot_el_camí_fins_al_directori&gt;</command> i després premeu <keycap>Retorn</keycap>.</para>  
+<para/> 
+	<para>Si es llança des del menú de MATE, l'<application>nalitzador de l'ús dels discs</application> s'inicia i es manté en un estat de repòs, a l'espera d'una acció de l'usuari.</para> 
+    <para>Quan inicieu l'<application>analitzador de l'ús dels discs</application> des del menú de MATE, es mostra la finestra següent.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title>Finestra de l'analitzador de l'ús dels discs</title> 
+	<screenshot> 
+	  <mediaobject><imageobject> <imagedata fileref="figures/baobab_window.png" format="PNG"/> </imageobject> <textobject> <phrase>Mostra la finestra principal de l'analitzador de l'ús dels discs. Conté la barra de menús, l'àrea de visualització, les barres de desplaçament i la barra d'estat.</phrase> </textobject></mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para>Aleshores l'usuari pot:</para>
+	<itemizedlist>
+    <listitem><para>iniciar una exploració de tot el sistema de fitxers;</para>
+    		</listitem>
+    <listitem><para>seleccionar una branca de directori local específica per explorar-la</para>
+    		</listitem>
+    <listitem><para>seleccionar un servidor remot i una carpeta per explorar-la</para>
+    		</listitem>
+    <listitem><para>establir les preferències</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Utilització</title>
+
+    <sect2 id="baobab-fullscan">
+      <title>Exploració de tot el sistema de fitxers</title>
+        <para>Per iniciar una exploració de tot el sistema de fitxers, seleccioneu des del menú <menuchoice><guimenu>Analitzador</guimenu><guimenuitem>Explora el sistema de fitxers</guimenuitem></menuchoice>, o premeu damunt del botó <guibutton>Explora el sistema de fitxers</guibutton> de la barra d'eines.</para>
+
+	<para>Quan acabi el procés d'exploració, obtindreu l'arbre complet del vostre sistema de fitxers, similar al de la figura següent.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title>Exploració de tot el sistema de fitxers de l'analitzador de l'ús dels discs</title> 
+	<screenshot> 
+	  <mediaobject><imageobject> <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> </imageobject> <textobject> <phrase>Mostra la finestra de l'exploració de tot el sistema de fitxers de l'analitzador de l'ús dels discs. Conté la barra de menús, l'àrea de visualització, les barres de desplaçament i la barra d'estat.</phrase> </textobject></mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para>Quan executeu una exploració de tot el sistema de fitxers, la finestra de l'<application>analitzador de l'ús dels discs</application> començarà a dibuixar l'arbre tan aviat com el fil comenci a explorar el sistema de fitxers. Si hi ha alguna partició gran muntada al sistema de fitxers, també s'explora.</para></note>
+    
+    <para>L'<application>analitzador de l'ús dels discs</application> mostrarà les mides a l'arbre de directoris com espai assignat. Això vol dir que les mides mostrades es refereixen a l'ús del disc real i no a la mida del directori apreciable. Si voleu veure la mida del fitxer apreciable, desmarqueu <menuchoice><guimenu>Vista</guimenu><guimenuitem>Espai assignat</guimenuitem></menuchoice> .</para>
+    
+    <warning><para>L'<application>analitzador de l'ús dels discs</application> no comptarà el directori /proc, ni tampoc la mida de cap fitxer que no estigui relacionada amb un fitxer «pla», d'aquesta manera els enllaços simbòlics, els blocs de caràcters, els dispositius de blocs, no formaran part de la mida del directori.</para></warning>
+   
+    <para>Els enllaços forts es gestionen d'una manera diferent: aquest primer enllaç fort es compta com un fitxer normal, mentre que els enllaços posteriors al mateix dispositiu de l'inode no es comptabilitzen al total, sinó que es ressalta a la columna de la dreta de la finestra.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title>Exploració d'una sola carpeta</title>
+
+    <para>Per iniciar una exploració d'una sola carpeta, seleccioneu des del menú <menuchoice><guimenu>Analitzador</guimenu><guimenuitem>Explora la carpeta...</guimenuitem></menuchoice>, o premeu damunt del botó <guibutton>Explora una carpeta</guibutton> de la barra d'eines.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title>Exploració remota</title>
+      
+      <para>Si necessiteu explorar la carpeta remota d'un servidor, només feu clic a la icona de la barra d'eines <guibutton>Explora una carpeta remota</guibutton> o seleccioneu des del menú <menuchoice><guimenu>Analitzador</guimenu><guimenuitem>Explora una carpeta remota</guimenuitem></menuchoice>, i obtindreu el quadre de diàleg següent. L'<application>analitzador de l'ús dels discs</application> pot connectar-se a un servidor a través de ssh, ftp, smb, http i https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title>Exploració d'una carpeta remota de l'analitzador de l'ús dels discs</title> 
+		<screenshot> 
+	 	 <mediaobject><imageobject> <imagedata fileref="figures/baobab_remote.png" format="PNG"/> </imageobject> <textobject> <phrase>Mostra el diàleg de carpeta remota de l'analitzador de l'ús dels discs. </phrase> </textobject></mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Preferències</title>
+    
+    <para>Per canviar les preferències de l'aplicació de l'<application>analitzador de l'ús dels discs</application>, seleccioneu <menuchoice><guimenu>Edita</guimenu><guimenuitem>Preferències</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title>Finestra de preferències de l'analitzador de l'ús dels discs</title> 
+	<screenshot> 
+	  <mediaobject><imageobject> <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> </imageobject> <textobject> <phrase>Finestra de preferències </phrase> </textobject></mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title>Seleccionar els dispositius a explorar</title>
+  <para>A la primera part de la finestra de preferències, es mostren tots els dispositius muntats que s'han detectat. Feu clic a la casella de selecció per incloure o excloure la partició a les operacions d'exploració del sistema de fitxers.</para>
+  <note><para>El dispositiu muntat a «/» no es pot excloure de l'exploració.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title>Habilitar el monitoratge de la carpeta d'usuari</title>
+      <para>Si aquesta opció està marcada, l'<application>analitzador de l'ús dels discs</application> monitorarà constantment qualsevol canvi extern al directori d'usuari i avisarà a l'usuari si s'afegeix o es treu un fitxer.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title>Arbres d'assignació</title>
+
+    <para>Els conceptes dels <guilabel>arbres d'assignació</guilabel> han estat desenvolupats per Ben Shneiderman en la dècada dels 90. Llegiu la seva <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">visió sobre els arbres d'assignació</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title>Finestra de l'arbre d'assignació de l'analitzador de l'ús dels discs</title>
+	<screenshot> 
+	  <mediaobject><imageobject> <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> </imageobject> <textobject> <phrase>Teoria dels arbres d'assignació. Mostra 2 diagrames d'arbres d'assignació </phrase> </textobject></mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para>La figura mostra un exemple de la teoria dels arbres d'assignació. Cadascun dels nodes (com es mostren al diagrama d'arbre) té un nom (una lletra) i una mida associada (un nombre). La mida de les fulles pot representar, per exemple, la mida dels fitxers per separat, la mida dels nodes que no són fulles és la suma de les mides dels seus fills.</para> 
+    
+    <para>L'arbre d'assignació es construeix a través de la subdivisió recursiva del rectangle inicial. La mida de cada sub-rectangle correspon a la mida del node. La direcció de la subdivisió s'alterna per nivell: primer horitzontalment, després verticalment, etcètera. Com a resultat, el rectangle inicial es parteix en rectangles més petits, de manera que la mida de cadascun dels rectangles reflecteix la mida de la fulla. L'estructura de l'arbre també es reflecteix a l'arbre d'assignació, com un resultat de la seva construcció. El color i l'anotació es poden utilitzar per donar informació extra sobre les fulles.</para>
+
+	<note><para>Els arbres d'assignació són molt eficaços quan la mida és la característica més important a mostrar.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title>Diagrama d'anells</title>
+
+    <para>El <guilabel>diagrama d'anells</guilabel> és una representació gràfica de l'ús dels discs mitjançant una carpeta concreta. Quan es llança l'aplicació, es notifica l'ús del sistema de fitxers tal com es pot veure a la següent figura:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title>L'analitzador de l'ús dels discs mostrant un diagrama d'anells amb l'ús del sistema de fitxers</title>
+      <screenshot> 
+	<mediaobject><imageobject> <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> </imageobject> <textobject> <phrase>Després de llançar l'aplicació, es mostra l'ús del sistema de fitxers. La representació gràfica està a la dreta. </phrase> </textobject></mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para>Quan inicieu l'exploració d'una carpeta, l'arbre de les subcarpetes es crea i es mostra al costat esquerre. Cadascuna de les files conté informació sobre el nom, quant espai ocupa (percentatge i mida en KB, MB o GB) i el nombre d'elements (sumant fitxers i directoris). Quan acaba aquest procés, el <guilabel>diagrama d'anells</guilabel> està dibuixat al costat dret. Si ho atureu abans que s'hagi completat, només es fa una representació parcial en funció dels directoris, dels quals l'ús està malmès.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title>L'analitzador de l'ús dels discs mostrant un diagrama d'anells amb l'ús d'una carpeta</title>
+      <screenshot> 
+	<mediaobject><imageobject> <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> </imageobject> <textobject> <phrase>Després d'explorar una carpeta. </phrase> </textobject></mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para>El <guilabel>diagrama d'anells</guilabel> està format per un conjunt d'anells niats al voltant d'un cercle central. Aquest cercle simbolitza la carpeta arrel de l'arbre parcial (és a dir, la carpeta que l'usuari ha seleccionat per explorar). Cadascun dels anells representa un nivell en l'arbre parcial, és a dir, les subcarpetes de la carpeta arrel es representaran al primer anell, i els nivells més profunds de l'arbre corresponen als anells exteriors a la gràfica. Cadascuna de les subcarpetes està representada per un sector de l'anell, el seu angle és proporcional a la mida del contingut de la carpeta, i està pintat amb un color diferent per facilitar la visualització. Es poden dibuixar fins a cinc nivells; en cas que una carpeta d'aquest últim cinquè nivell contingui més subcarpetes, aquesta situació s'assenyalarà amb la presència d'una corba negra al cantó de la vora del sector de l'anell de la carpeta. Quan se selecciona una carpeta sense més subcarpetes per ser l'arrel de l'arbre parcial, només es dibuixa el cercle intern. Quan el punter del ratolí es mou per sobre d'una de les carpetes de la gràfica, es ressaltarà i apareixerà una informació sobre la informació sobre el seu nom i la seva mida. Si hi ha subcarpetes, apareixeran indicadors petits grisos que indiquen els seus noms. És possible que no es mostrin tots els noms de les subcarpetes, per evitar superposicions.</para>
+
+    <para>Podeu pujar i baixar per les files de la llista (expandint de manera opcional aquelles amb subcarpetes), la representació gràfica canviarà utilitzant la carpeta seleccionada com a arrel de l'arbre parcial a representar. També es pot navegar per les carpetes des del mateix <guilabel>diagrama d'anells</guilabel>. Si feu clic amb el botó esquerre del ratolí dins d'una carpeta, us moureu més endins amb l'establiment de l'arrel de la gràfica a aquesta carpeta. Si premeu el botó central (sense importar el lloc, sempre que feu clic a l'interior del marc del <guilabel>diagrama d'anells</guilabel>) obtindreu el comportament contrari, fent un pas enrere a la jerarquia.</para>
+
+    <para>El percentatge del radi del seu pare que s'utilitza per a una carpeta donada, és directament proporcional a la relació entre la seva mida i els seus pares. És fàcil entendre que la mida d'una carpeta és igual o més petita que la dels seus pares. Encara que només es mostren directoris en aquesta representació gràfica, es tenen en compte els fitxers per calcular la quantitat d'espai ocupat per les carpetes.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/ca/legal.xml 1.26.0-0ubuntu1/baobab/help/ca/legal.xml
--- 1.24.0-1/baobab/help/ca/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/ca/legal.xml	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>Es concedeix el permís per copiar, distribuir i / o modificar aquest document sota els termes de la GFDL (GNU Free Documentation License), versió 1.1 o qualsevol versió posterior publicada per la Free Software Foundation que tinguin les seccions invariants, i sense cap text a la portada. Podeu trobar una còpia de la GFDL en aquest <ulink type="help" url="help:fdl">enllaç</ulink> o bé al fitxer COPYING-DOCS que es distribueix amb aquest manual.</para>
+         <para>Aquest manual forma part d'una col·lecció de manuals de MATE que estan distribuïts sota la GFDL. Si voleu distribuir aquest manual per separat de la col·lecció, podeu fer-ho afegint una còpia de la llicència al manual, tal com es descriu a la secció 6 de la llicència.</para>
+
+	<para>Molts dels noms utilitzats per les empreses per distingir els seus productes i serveis es consideren marques comercials. Quan aquests noms apareixen en qualsevol documentació de MATE, i els membres del projecte de documentació de MATE en són conscients, els noms tenen lletres majúscules o bé comencen en majúscules.</para>
+
+	<para>EL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT S'OFEREIXEN SOTA ELS TERMES DE LA LLICÈNCIA DE DOCUMENTACIÓ LLIURE DE GNU, TENINT EN COMPTE QUE: <orderedlist>
+		<listitem>
+		  <para>EL DOCUMENT S'OFEREIX «TAL COM ÉS», SENSE CAP TIPUS DE GARANTIA, NI EXPLÍCITA NI IMPLÍCITA; AIXÒ INCLOU, SENSE LIMITAR-S'HI, LES GARANTIES QUE EL DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT NO TINGUI DEFECTES, SIGUI COMERCIALITZABLE, SIGUI ADEQUAT PER A UN ÚS CONCRET O NO INFRINGEIXI CAP LLEI. TOT EL RISC PEL QUE FA A LA QUALITAT, EXACTITUD I RENDIMENT DEL DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT ÉS VOSTRE. EN CAS QUE EL DOCUMENT RESULTÉS DEFECTUÓS EN QUALSEVOL ASPECTE, VÓS (NO PAS L'ESCRIPTOR INICIAL, L'AUTOR O CAP ALTRE COL·LABORADOR) ASSUMIU TOT EL COST DE MANTENIMENT, REPARACIÓ O CORRECCIÓ. AQUESTA RENÚNCIA DE GARANTIA CONSTITUEIX UNA PART ESSENCIAL D'AQUESTA LLICÈNCIA. NO S'AUTORITZA L'ÚS DE CAP DOCUMENT O VERSIÓ MODIFICADA DEL DOCUMENT EXCEPTE SOTA AQUESTA RENÚNCIA DE GARANTIA; I</para>
+		</listitem>
+		<listitem>
+		  <para>EN CAP CAS I SOTA CAP INTERPRETACIÓ LEGAL, JA SIGUI PER AGREUJAMENT (INCLOENT-HI LA NEGLIGÈNCIA), CONTRACTE O ALTRE CAS, L'AUTOR, L'ESCRIPTOR ORIGINAL, QUALSEVOL DELS COL·LABORADORS O DISTRIBUÏDORS DEL DOCUMENT O UNA VERSIÓ MODIFICADA DEL DOCUMENT NI CAP PROVEÏDOR D'AQUESTES PARTS NO SERAN RESPONSABLES DAVANT DE NINGÚ PER CAP DANY DIRECTE, INDIRECTE, ESPECIAL, ACCIDENTAL O CONSECUTIU DE QUALSEVOL TIPUS; AIXÒ INCLOU, SENSE LIMITAR-S'HI, ELS DANYS PER PÈRDUA DE CLIENTS, INTERRUPCIONS DE LA FEINA, FALLADA O MAL FUNCIONAMENT DE L'ORDINADOR, O QUALSEVOL ALTRA PÈRDUA O DANY RELACIONAT AMB L'ÚS DEL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT, FINS I TOT SI S'HA INFORMAT AQUESTA PART DE LA POSSIBILITAT D'AQUESTS DANYS.</para>
+		</listitem>
+	  </orderedlist></para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/ca@valencia/ca@valencia.po 1.26.0-0ubuntu1/baobab/help/ca@valencia/ca@valencia.po
--- 1.24.0-1/baobab/help/ca@valencia/ca@valencia.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/ca@valencia/ca@valencia.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,3 +1,4 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # Jose Alfredo Murcia Andrés <joamuran@gmail.com>, 2018
@@ -7,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Empar Montoro <emontra2018@gmail.com>, 2018\n"
 "Language-Team: Catalan (Valencian) (https://www.transifex.com/mate/teams/13566/ca@valencia/)\n"
@@ -42,7 +43,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -62,121 +63,11 @@ msgstr "Projecte de documentació del MA
 msgid "GNOME Documentation Project"
 msgstr "Projecte de documentació de GNOME"
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-"Es concedeix el permís per a copiar, distribuir i / o modificar aquest "
-"document sota els termes de la GFDL (GNU Free Documentation License), versió"
-" 1.1 o qualsevol versió posterior publicada per la Free Software Foundation "
-"que tinguen les seccions invariants, i sense cap text a la portada. Podeu "
-"trobar una còpia de la GFDL en aquest<ulink type=\"help\" "
-"url=\"help:fdl\">enllaç</ulink> o bé al fitxer COPYING-DOCS que es "
-"distribueix amb aquest manual."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-"Aquest manual forma part d'una col·lecció de manuals del MATE que estan "
-"distribuïts sota la GFDL. Si voleu distribuir aquest manual per separat de "
-"la col·lecció, podeu fer-ho afegint una còpia de la llicència al manual, tal"
-" com es descriu a la secció 6 de la llicència."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-"Molts dels noms utilitzats per les empreses per a distingir els seus "
-"productes i serveis es consideren marques comercials. Quan aquests noms "
-"apareixen en qualsevol documentació del MATE, i els membres del projecte de "
-"documentació del MATE en són conscients, els noms tenen lletres majúscules o"
-" bé comencen amb majúscula."
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-"EL DOCUMENT S'OFEREIX «TAL COM ÉS», SENSE CAP TIPUS DE GARANTIA, NI "
-"EXPLÍCITA NI IMPLÍCITA; AIXÒ INCLOU, SENSE LIMITACIÓ, LES GARANTIES QUE EL "
-"DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT NO TINGA DEFECTES, SIGA "
-"COMERCIALITZABLE, SIGA ADEQUAT PER A UN ÚS CONCRET O NO INFRINGISCA CAP "
-"LLEI. TOT EL RISC PEL QUE FA A LA QUALITAT, EXACTITUD I RENDIMENT DEL "
-"DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT ÉS VOSTRE. EN CAS QUE EL "
-"DOCUMENT RESULTARA DEFECTUÓS EN QUALSEVOL ASPECTE, VÓS (NO L'ESCRIPTOR "
-"INICIAL, L'AUTOR O CAP ALTRE COL·LABORADOR) ASSUMIU TOT EL COST DE "
-"MANTENIMENT, REPARACIÓ O CORRECCIÓ. AQUESTA RENÚNCIA DE GARANTIA CONSTITUEIX"
-" UNA PART ESSENCIAL D'AQUESTA LLICÈNCIA. NO S'AUTORITZA L'ÚS DE CAP DOCUMENT"
-" O VERSIÓ MODIFICADA DEL DOCUMENT EXCEPTE SOTA AQUESTA RENÚNCIA DE GARANTIA;"
-" I"
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-"EN CAP CAS I SOTA CAP INTERPRETACIÓ LEGAL, JA SIGA PER AGREUJAMENT "
-"(INCLOENT-HI LA NEGLIGÈNCIA), CONTRACTE O ALTRE CAS, L'AUTOR, L'ESCRIPTOR "
-"ORIGINAL, QUALSEVOL DELS COL·LABORADORS O DISTRIBUÏDORS DEL DOCUMENT O UNA "
-"VERSIÓ MODIFICADA DEL DOCUMENT NI CAP PROVEÏDOR D'AQUESTES PARTS NO SERAN "
-"RESPONSABLES DAVANT DE NINGÚ PER CAP DANY DIRECTE, INDIRECTE, ESPECIAL, "
-"ACCIDENTAL O CONSECUTIU DE QUALSEVOL TIPUS; AIXÒ INCLOU, SENSE LIMITACIÓ, "
-"ELS DANYS PER PÈRDUA DE CLIENTS, INTERRUPCIONS DE LA FAENA, FALLADA O MAL "
-"FUNCIONAMENT DE L'ORDINADOR, O QUALSEVOL ALTRA PÈRDUA O DANY RELACIONAT AMB "
-"L'ÚS DEL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT, FINS I TOT SI "
-"S'HA INFORMAT AQUESTA PART DE LA POSSIBILITAT D'AQUESTS DANYS."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-"EL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT S'OFEREIXEN SOTA ELS "
-"TERMES DE LA LLICÈNCIA DE DOCUMENTACIÓ LLIURE DE GNU, TENINT EN COMPTE QUE: "
-"<_:orderedlist-1/>"
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -250,7 +141,7 @@ msgstr "Introducció"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -278,7 +169,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -310,14 +201,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -335,7 +226,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -412,7 +303,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -505,7 +396,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -543,7 +434,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -797,3 +688,95 @@ msgstr ""
 "que tinguen les seccions invariants, i sense cap text a la portada. Podeu "
 "trobar una còpia de la GFDL en aquest <_:ulink-1/> o bé al fitxer COPYING-"
 "DOCS que es distribueix amb aquest manual."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+"Aquest manual forma part d'una col·lecció de manuals del MATE que estan "
+"distribuïts sota la GFDL. Si voleu distribuir aquest manual per separat de "
+"la col·lecció, podeu fer-ho afegint una còpia de la llicència al manual, tal"
+" com es descriu a la secció 6 de la llicència."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+"Molts dels noms utilitzats per les empreses per a distingir els seus "
+"productes i serveis es consideren marques comercials. Quan aquests noms "
+"apareixen en qualsevol documentació del MATE, i els membres del projecte de "
+"documentació del MATE en són conscients, els noms tenen lletres majúscules o"
+" bé comencen amb majúscula."
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+"EL DOCUMENT S'OFEREIX «TAL COM ÉS», SENSE CAP TIPUS DE GARANTIA, NI "
+"EXPLÍCITA NI IMPLÍCITA; AIXÒ INCLOU, SENSE LIMITACIÓ, LES GARANTIES QUE EL "
+"DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT NO TINGA DEFECTES, SIGA "
+"COMERCIALITZABLE, SIGA ADEQUAT PER A UN ÚS CONCRET O NO INFRINGISCA CAP "
+"LLEI. TOT EL RISC PEL QUE FA A LA QUALITAT, EXACTITUD I RENDIMENT DEL "
+"DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT ÉS VOSTRE. EN CAS QUE EL "
+"DOCUMENT RESULTARA DEFECTUÓS EN QUALSEVOL ASPECTE, VÓS (NO L'ESCRIPTOR "
+"INICIAL, L'AUTOR O CAP ALTRE COL·LABORADOR) ASSUMIU TOT EL COST DE "
+"MANTENIMENT, REPARACIÓ O CORRECCIÓ. AQUESTA RENÚNCIA DE GARANTIA CONSTITUEIX"
+" UNA PART ESSENCIAL D'AQUESTA LLICÈNCIA. NO S'AUTORITZA L'ÚS DE CAP DOCUMENT"
+" O VERSIÓ MODIFICADA DEL DOCUMENT EXCEPTE SOTA AQUESTA RENÚNCIA DE GARANTIA;"
+" I"
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+"EN CAP CAS I SOTA CAP INTERPRETACIÓ LEGAL, JA SIGA PER AGREUJAMENT "
+"(INCLOENT-HI LA NEGLIGÈNCIA), CONTRACTE O ALTRE CAS, L'AUTOR, L'ESCRIPTOR "
+"ORIGINAL, QUALSEVOL DELS COL·LABORADORS O DISTRIBUÏDORS DEL DOCUMENT O UNA "
+"VERSIÓ MODIFICADA DEL DOCUMENT NI CAP PROVEÏDOR D'AQUESTES PARTS NO SERAN "
+"RESPONSABLES DAVANT DE NINGÚ PER CAP DANY DIRECTE, INDIRECTE, ESPECIAL, "
+"ACCIDENTAL O CONSECUTIU DE QUALSEVOL TIPUS; AIXÒ INCLOU, SENSE LIMITACIÓ, "
+"ELS DANYS PER PÈRDUA DE CLIENTS, INTERRUPCIONS DE LA FAENA, FALLADA O MAL "
+"FUNCIONAMENT DE L'ORDINADOR, O QUALSEVOL ALTRA PÈRDUA O DANY RELACIONAT AMB "
+"L'ÚS DEL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT, FINS I TOT SI "
+"S'HA INFORMAT AQUESTA PART DE LA POSSIBILITAT D'AQUESTS DANYS."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
+"EL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT S'OFEREIXEN SOTA ELS "
+"TERMES DE LA LLICÈNCIA DE DOCUMENTACIÓ LLIURE DE GNU, TENINT EN COMPTE QUE: "
+"<_:orderedlist-1/>"
diff -pruN 1.24.0-1/baobab/help/ca@valencia/index.docbook 1.26.0-0ubuntu1/baobab/help/ca@valencia/index.docbook
--- 1.24.0-1/baobab/help/ca@valencia/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/ca@valencia/index.docbook	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="ca-valencia">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername>Projecte de documentació del MATE</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername>Projecte de documentació de GNOME</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title>Comentaris</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>Introducció</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title>Com començar</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Ús</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Preferències</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/ca@valencia/legal.xml 1.26.0-0ubuntu1/baobab/help/ca@valencia/legal.xml
--- 1.24.0-1/baobab/help/ca@valencia/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/ca@valencia/legal.xml	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>Es concedeix el permís per a copiar, distribuir i / o modificar aquest document sota els termes de la GFDL (GNU Free Documentation License), versió 1.1 o qualsevol versió posterior publicada per la Free Software Foundation que tinguen les seccions invariants, i sense cap text a la portada. Podeu trobar una còpia de la GFDL en aquest <ulink type="help" url="help:fdl">enllaç</ulink> o bé al fitxer COPYING-DOCS que es distribueix amb aquest manual.</para>
+         <para>Aquest manual forma part d'una col·lecció de manuals del MATE que estan distribuïts sota la GFDL. Si voleu distribuir aquest manual per separat de la col·lecció, podeu fer-ho afegint una còpia de la llicència al manual, tal com es descriu a la secció 6 de la llicència.</para>
+
+	<para>Molts dels noms utilitzats per les empreses per a distingir els seus productes i serveis es consideren marques comercials. Quan aquests noms apareixen en qualsevol documentació del MATE, i els membres del projecte de documentació del MATE en són conscients, els noms tenen lletres majúscules o bé comencen amb majúscula.</para>
+
+	<para>EL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT S'OFEREIXEN SOTA ELS TERMES DE LA LLICÈNCIA DE DOCUMENTACIÓ LLIURE DE GNU, TENINT EN COMPTE QUE: <orderedlist>
+		<listitem>
+		  <para>EL DOCUMENT S'OFEREIX «TAL COM ÉS», SENSE CAP TIPUS DE GARANTIA, NI EXPLÍCITA NI IMPLÍCITA; AIXÒ INCLOU, SENSE LIMITACIÓ, LES GARANTIES QUE EL DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT NO TINGA DEFECTES, SIGA COMERCIALITZABLE, SIGA ADEQUAT PER A UN ÚS CONCRET O NO INFRINGISCA CAP LLEI. TOT EL RISC PEL QUE FA A LA QUALITAT, EXACTITUD I RENDIMENT DEL DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT ÉS VOSTRE. EN CAS QUE EL DOCUMENT RESULTARA DEFECTUÓS EN QUALSEVOL ASPECTE, VÓS (NO L'ESCRIPTOR INICIAL, L'AUTOR O CAP ALTRE COL·LABORADOR) ASSUMIU TOT EL COST DE MANTENIMENT, REPARACIÓ O CORRECCIÓ. AQUESTA RENÚNCIA DE GARANTIA CONSTITUEIX UNA PART ESSENCIAL D'AQUESTA LLICÈNCIA. NO S'AUTORITZA L'ÚS DE CAP DOCUMENT O VERSIÓ MODIFICADA DEL DOCUMENT EXCEPTE SOTA AQUESTA RENÚNCIA DE GARANTIA; I</para>
+		</listitem>
+		<listitem>
+		  <para>EN CAP CAS I SOTA CAP INTERPRETACIÓ LEGAL, JA SIGA PER AGREUJAMENT (INCLOENT-HI LA NEGLIGÈNCIA), CONTRACTE O ALTRE CAS, L'AUTOR, L'ESCRIPTOR ORIGINAL, QUALSEVOL DELS COL·LABORADORS O DISTRIBUÏDORS DEL DOCUMENT O UNA VERSIÓ MODIFICADA DEL DOCUMENT NI CAP PROVEÏDOR D'AQUESTES PARTS NO SERAN RESPONSABLES DAVANT DE NINGÚ PER CAP DANY DIRECTE, INDIRECTE, ESPECIAL, ACCIDENTAL O CONSECUTIU DE QUALSEVOL TIPUS; AIXÒ INCLOU, SENSE LIMITACIÓ, ELS DANYS PER PÈRDUA DE CLIENTS, INTERRUPCIONS DE LA FAENA, FALLADA O MAL FUNCIONAMENT DE L'ORDINADOR, O QUALSEVOL ALTRA PÈRDUA O DANY RELACIONAT AMB L'ÚS DEL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT, FINS I TOT SI S'HA INFORMAT AQUESTA PART DE LA POSSIBILITAT D'AQUESTS DANYS.</para>
+		</listitem>
+	  </orderedlist></para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/cmn/cmn.po 1.26.0-0ubuntu1/baobab/help/cmn/cmn.po
--- 1.24.0-1/baobab/help/cmn/cmn.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/cmn/cmn.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,10 +1,11 @@
+# 
 # Translators:
 # 趙惟倫 <bluebat@member.fsf.org>, 2018
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: 趙惟倫 <bluebat@member.fsf.org>, 2018\n"
 "Language-Team: Chinese (Mandarin) (https://www.transifex.com/mate/teams/13566/cmn/)\n"
@@ -36,7 +37,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -56,80 +57,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -203,7 +135,7 @@ msgstr "導覽"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -231,7 +163,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -263,14 +195,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -288,7 +220,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -365,7 +297,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -458,7 +390,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -496,7 +428,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -744,3 +676,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/cmn/index.docbook 1.26.0-0ubuntu1/baobab/help/cmn/index.docbook
--- 1.24.0-1/baobab/help/cmn/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/cmn/index.docbook	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,503 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="cmn">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  
+    <othercredit class="translator">
+      <personname>
+        <firstname>Woodman Tuen</firstname>
+      </personname>
+      <email>wmtuen@gmail.com</email>
+    </othercredit>
+    <copyright>
+      
+        <year>2005-06</year>
+      
+      <holder>Woodman Tuen</holder>
+    </copyright>
+  
+    <othercredit class="translator">
+      <personname>
+        <firstname>Abel Cheung</firstname>
+      </personname>
+      <email>abel@oaka.org</email>
+    </othercredit>
+    <copyright>
+      
+        <year>2003-04</year>
+      
+      <holder>Abel Cheung</holder>
+    </copyright>
+  
+    <othercredit class="translator">
+      <personname>
+        <firstname>趙惟倫</firstname>
+      </personname>
+      <email>bluebat@member.fsf.org</email>
+    </othercredit>
+    <copyright>
+      
+        <year>2013</year>
+      
+      <holder>趙惟倫</holder>
+    </copyright>
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>導覽</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>用量</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>偏好設定</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/cmn/legal.xml 1.26.0-0ubuntu1/baobab/help/cmn/legal.xml
--- 1.24.0-1/baobab/help/cmn/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/cmn/legal.xml	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/crh/crh.po 1.26.0-0ubuntu1/baobab/help/crh/crh.po
--- 1.24.0-1/baobab/help/crh/crh.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/crh/crh.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,10 +1,11 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
 "Language-Team: Crimean Turkish (https://www.transifex.com/mate/teams/13566/crh/)\n"
@@ -35,7 +36,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -55,80 +56,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -202,7 +134,7 @@ msgstr ""
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -230,7 +162,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -262,14 +194,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -287,7 +219,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -364,7 +296,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -457,7 +389,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -495,7 +427,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -743,3 +675,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/crh/index.docbook 1.26.0-0ubuntu1/baobab/help/crh/index.docbook
--- 1.24.0-1/baobab/help/crh/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/crh/index.docbook	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="crh">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title lang="en">Introduction</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Kullanım</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Tercihler</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/crh/legal.xml 1.26.0-0ubuntu1/baobab/help/crh/legal.xml
--- 1.24.0-1/baobab/help/crh/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/crh/legal.xml	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/cs/cs.po 1.26.0-0ubuntu1/baobab/help/cs/cs.po
--- 1.24.0-1/baobab/help/cs/cs.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/cs/cs.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,17 +1,19 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # ToMáš Marný, 2018
 # Wolfgang Ulbrich <mate@raveit.de>, 2018
 # LiberteCzech <liberte.czech@gmail.com>, 2018
 # phebix <dev@phebix.cz>, 2018
-# Lucas Lommer <drom@kdyne.net>, 2019
+# Roman Horník <roman.hornik@debian-linux.cz>, 2021
+# Lukáš Lommer <drom@kdyne.net>, 2021
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
-"Last-Translator: Lucas Lommer <drom@kdyne.net>, 2019\n"
+"Last-Translator: Lukáš Lommer <drom@kdyne.net>, 2021\n"
 "Language-Team: Czech (https://www.transifex.com/mate/teams/13566/cs/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -48,8 +50,8 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
-msgstr ""
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
+msgstr "<year>2015-2021</year> <holder>Projekt dokumentace MATE</holder>"
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:34
@@ -68,104 +70,11 @@ msgstr "Dokumentační projekt MATE"
 msgid "GNOME Documentation Project"
 msgstr "Dokumentační projekt GNOME"
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-"Je povoleno kopírovat, šířit a/nebo upravovat tento dokument za podmínek GNU"
-" Free Documentation License (GFDL), verze 1.1 nebo jakékoli další verze "
-"vydané nadací Free Software Foundation; bez neměnných oddílů, bez textů "
-"předních desek a bez textů zadních desek. Kopii licence GFDL naleznete pod "
-"<ulink type=\"help\" url=\"help:fdl\">tímto odkazem</ulink> nebo v souboru "
-"COPYING-DOCS dodávaném s touto příručkou."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-"Tato příručka je součástí sbírky příruček MATE šířených za podmínek licence "
-"GNU FDL. Pokud chcete tento dokument šířit odděleně od sbírky, musíte "
-"přiložit kopii licence dle popisu v oddíle 6 dané licence."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-"Mnoho užívaných jmen určených k zviditelnění produktů nebo služeb jsou "
-"ochranné známky. Na místech, kde jsou tato jména v dokumentaci užita a "
-"členové Dokumentačního projektu MATE jsou si vědomi skutečnosti, že se jedná"
-" o ochrannou známku, je takové jméno psáno velkými písmeny celé nebo s "
-"velkým písmenem na začátku."
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-"DOKUMENT JE POSKYTOVÁN V PODOBĚ \"JAK JE\", BEZ ZÁRUKY JAKÉHOKOLIV DRUHU, "
-"NEPOSKYTUJÍ SE ANI ODVOZENÉ ZÁRUKY, ZÁRUKY, ŽE DOKUMENT, NEBO JEHO UPRAVENÁ "
-"VERZE, JE BEZCHYBNÝ, NEBO ZÁRUKY PRODEJNOSTI, VHODNOSTI PRO URČITÝ ÚČEL, "
-"NEBO NEPORUŠENOSTI. RIZIKO NEKVALITY, NEPŘESNOSTI A ŠPATNÉHO PROVEDENÍ "
-"DOKUMENTU, NEBO JEHO UPRAVENÉ VERZE, NESETE VY. POKUD JE TENTO DOKUMENT NEBO"
-" JEHO UPRAVENÁ VERZE VADNÁ V JAKÉMKOLIV SMYSLU, VY (NIKOLIV PŮVODCE, AUTOR "
-"NEBO JAKÝKOLIV PŘISPĚVATEL) PŘEBÍRÁTE ODPOVĚDNOST ZA JAKÉKOLIV NÁKLADY NA "
-"NUTNÉ ÚPRAVY, OPRAVY ČI SLUŽBY. TOTO PROHLÁŠENÍ O ZÁRUCE PŘEDSTAVUJE "
-"ZÁKLADNÍ SOUČÁST TÉTO LICENCE. BEZ TOHOTO PROHLÁŠENÍ NENÍ PODLE TÉTO DOHODY "
-"POVOLENO UŽÍVÁNÍ ANI ÚPRAVY TOHOTO DOKUMENTU; DÁLE"
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -239,7 +148,7 @@ msgstr "Úvod"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -256,7 +165,7 @@ msgstr ""
 #. (itstool) path: sect1/title
 #: C/index.docbook:153
 msgid "Getting Started"
-msgstr ""
+msgstr "Začínáme"
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:155
@@ -267,7 +176,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -299,14 +208,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -324,7 +233,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -401,7 +310,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -494,7 +403,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -532,7 +441,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -780,3 +689,81 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+"Tato příručka je součástí sbírky příruček MATE šířených za podmínek licence "
+"GNU FDL. Pokud chcete tento dokument šířit odděleně od sbírky, musíte "
+"přiložit kopii licence dle popisu v oddíle 6 dané licence."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+"Mnoho užívaných jmen určených k zviditelnění produktů nebo služeb jsou "
+"ochranné známky. Na místech, kde jsou tato jména v dokumentaci užita a "
+"členové Dokumentačního projektu MATE jsou si vědomi skutečnosti, že se jedná"
+" o ochrannou známku, je takové jméno psáno velkými písmeny celé nebo s "
+"velkým písmenem na začátku."
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+"DOKUMENT JE POSKYTOVÁN V PODOBĚ \"JAK JE\", BEZ ZÁRUKY JAKÉHOKOLIV DRUHU, "
+"NEPOSKYTUJÍ SE ANI ODVOZENÉ ZÁRUKY, ZÁRUKY, ŽE DOKUMENT, NEBO JEHO UPRAVENÁ "
+"VERZE, JE BEZCHYBNÝ, NEBO ZÁRUKY PRODEJNOSTI, VHODNOSTI PRO URČITÝ ÚČEL, "
+"NEBO NEPORUŠENOSTI. RIZIKO NEKVALITY, NEPŘESNOSTI A ŠPATNÉHO PROVEDENÍ "
+"DOKUMENTU, NEBO JEHO UPRAVENÉ VERZE, NESETE VY. POKUD JE TENTO DOKUMENT NEBO"
+" JEHO UPRAVENÁ VERZE VADNÁ V JAKÉMKOLIV SMYSLU, VY (NIKOLIV PŮVODCE, AUTOR "
+"NEBO JAKÝKOLIV PŘISPĚVATEL) PŘEBÍRÁTE ODPOVĚDNOST ZA JAKÉKOLIV NÁKLADY NA "
+"NUTNÉ ÚPRAVY, OPRAVY ČI SLUŽBY. TOTO PROHLÁŠENÍ O ZÁRUCE PŘEDSTAVUJE "
+"ZÁKLADNÍ SOUČÁST TÉTO LICENCE. BEZ TOHOTO PROHLÁŠENÍ NENÍ PODLE TÉTO DOHODY "
+"POVOLENO UŽÍVÁNÍ ANI ÚPRAVY TOHOTO DOKUMENTU; DÁLE"
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
+"DOKUMENT A JEHO UPRAVENÉ VERZE JSOU ŠÍŘENY V SOULADU SE ZNĚNÍM LICENCE GNU "
+"FREE DOCUMENTATION LICENSE S NÁSLEDUJÍCÍM USTANOVENÍM: <_:orderedlist-1/>"
diff -pruN 1.24.0-1/baobab/help/cs/index.docbook 1.26.0-0ubuntu1/baobab/help/cs/index.docbook
--- 1.24.0-1/baobab/help/cs/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/cs/index.docbook	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,461 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="cs">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"><year>2015-2021</year> <holder>Projekt dokumentace MATE</holder></copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername>Dokumentační projekt MATE</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername>Dokumentační projekt GNOME</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title>Ohlasy</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>Úvod</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title>Začínáme</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Využití</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Předvolby</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title>Povolit sledování domovské složky</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title>Kruhový diagram</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/cs/legal.xml 1.26.0-0ubuntu1/baobab/help/cs/legal.xml
--- 1.24.0-1/baobab/help/cs/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/cs/legal.xml	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para>Tato příručka je součástí sbírky příruček MATE šířených za podmínek licence GNU FDL. Pokud chcete tento dokument šířit odděleně od sbírky, musíte přiložit kopii licence dle popisu v oddíle 6 dané licence.</para>
+
+	<para>Mnoho užívaných jmen určených k zviditelnění produktů nebo služeb jsou ochranné známky. Na místech, kde jsou tato jména v dokumentaci užita a členové Dokumentačního projektu MATE jsou si vědomi skutečnosti, že se jedná o ochrannou známku, je takové jméno psáno velkými písmeny celé nebo s velkým písmenem na začátku.</para>
+
+	<para>DOKUMENT A JEHO UPRAVENÉ VERZE JSOU ŠÍŘENY V SOULADU SE ZNĚNÍM LICENCE GNU FREE DOCUMENTATION LICENSE S NÁSLEDUJÍCÍM USTANOVENÍM: <orderedlist>
+		<listitem>
+		  <para>DOKUMENT JE POSKYTOVÁN V PODOBĚ "JAK JE", BEZ ZÁRUKY JAKÉHOKOLIV DRUHU, NEPOSKYTUJÍ SE ANI ODVOZENÉ ZÁRUKY, ZÁRUKY, ŽE DOKUMENT, NEBO JEHO UPRAVENÁ VERZE, JE BEZCHYBNÝ, NEBO ZÁRUKY PRODEJNOSTI, VHODNOSTI PRO URČITÝ ÚČEL, NEBO NEPORUŠENOSTI. RIZIKO NEKVALITY, NEPŘESNOSTI A ŠPATNÉHO PROVEDENÍ DOKUMENTU, NEBO JEHO UPRAVENÉ VERZE, NESETE VY. POKUD JE TENTO DOKUMENT NEBO JEHO UPRAVENÁ VERZE VADNÁ V JAKÉMKOLIV SMYSLU, VY (NIKOLIV PŮVODCE, AUTOR NEBO JAKÝKOLIV PŘISPĚVATEL) PŘEBÍRÁTE ODPOVĚDNOST ZA JAKÉKOLIV NÁKLADY NA NUTNÉ ÚPRAVY, OPRAVY ČI SLUŽBY. TOTO PROHLÁŠENÍ O ZÁRUCE PŘEDSTAVUJE ZÁKLADNÍ SOUČÁST TÉTO LICENCE. BEZ TOHOTO PROHLÁŠENÍ NENÍ PODLE TÉTO DOHODY POVOLENO UŽÍVÁNÍ ANI ÚPRAVY TOHOTO DOKUMENTU; DÁLE</para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist></para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/cy/cy.po 1.26.0-0ubuntu1/baobab/help/cy/cy.po
--- 1.24.0-1/baobab/help/cy/cy.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/cy/cy.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,3 +1,4 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # ciaran, 2018
@@ -5,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: ciaran, 2018\n"
 "Language-Team: Welsh (https://www.transifex.com/mate/teams/13566/cy/)\n"
@@ -36,7 +37,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -56,80 +57,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -203,7 +135,7 @@ msgstr ""
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -231,7 +163,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -263,14 +195,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -288,7 +220,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -365,7 +297,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -458,7 +390,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -496,7 +428,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -744,3 +676,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/cy/index.docbook 1.26.0-0ubuntu1/baobab/help/cy/index.docbook
--- 1.24.0-1/baobab/help/cy/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/cy/index.docbook	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="cy">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title lang="en">Introduction</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title lang="en">Usage</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Hoffterau</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/cy/legal.xml 1.26.0-0ubuntu1/baobab/help/cy/legal.xml
--- 1.24.0-1/baobab/help/cy/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/cy/legal.xml	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/da/da.po 1.26.0-0ubuntu1/baobab/help/da/da.po
--- 1.24.0-1/baobab/help/da/da.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/da/da.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,13 +1,14 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
-# Joe Hansen <joedalton2@yahoo.dk>, 2020
+# Joe Hansen <joedalton2@yahoo.dk>, 2021
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
-"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>, 2020\n"
+"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>, 2021\n"
 "Language-Team: Danish (https://www.transifex.com/mate/teams/13566/da/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -40,8 +41,8 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
-msgstr "<year>2015-2020</year> <holder>MATE-dokumentationsprojektet</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
+msgstr "<year>2015-2021</year> <holder>MATE-dokumentationsprojektet</holder>"
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:34
@@ -60,122 +61,13 @@ msgstr "MATE-dokumentationsprojektet"
 msgid "GNOME Documentation Project"
 msgstr "GNOME-dokumentationsprojektet"
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-"Tilladelse er givet til at kopiere, distribuere og/eller ændre dette "
-"dokument under betingelserne i GNU Free Documentation License (GFDL), "
-"version 1.1 eller enhver senere version udgivet af Free Software Foundation;"
-" uden invariante afsnit, forsidetekster, samt bagsidetekster. Du kan se en "
-"kopi af GFDL her <ulink type=\"help\" url=\"help:fdl\">henvisning</ulink> "
-"eller i filen COPYING-DOCS som distribueres sammen med denne manual."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-"Denne manual er en del af en samling af MATE-manualer distribueret under "
-"GFDL'en. Hvis du ønsker at distribuere denne manual separat fra samlingen, "
-"du kan gøre dette ved at tilføje en kopi af manualens licens, som beskrevet "
-"i afsnit 6 af denne licens."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-"En stor del af de navne som anvendes af firmaer til at identificere deres "
-"produkter og tjenester hævdes som værende varemærker. Hvor disse navne "
-"fremgår i en hvilken som helst MATE-dokumentation, og medlemmerne af  MATE-"
-"dokumentationsprojeket er gjort opmærksom på disse varemærker, så er disse "
-"navne vist med store bogstaver eller stort begyndelsesbogstav."
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-"DETTE DOKUMENT GØRES TILGÆNGELIGT SÅDAN SOM DET ER, UDEN NOGEN FORM FOR "
-"GARANTI, HVERKEN UDTALT ELLER ANTYDET, DERIBLANDT, UDEN BEGRÆNSNINGER, "
-"GARANTIER OM AT DOKUMENTET ELLER ÆNDREDE VERSIONER AF DOKUMENTET ER FRIT FOR"
-" DEFEKTER, PASSENDE TIL ET BESTEMT FORMÅL ELLER IKKE-KRÆNKENDE. DU HÆFTER "
-"SELV FOR HELE RISIKOEN VEDRØRENDE KVALITET, KORREKTHED OG YDELSE FOR "
-"DOKUMENTET ELLER ÆNDREDE VERSIONER AF DOKUMENTET. SKULLE ET DOKUMENT,  ELLER"
-" EN ÆNDRET VERSION AF ET DOKUMENT VISE SIG AT VÆRE DEFEKT PÅ EN HVILKEN SOM "
-"HELST MÅDE, HÆFTER DU FOR BETALING FOR EVENTUEL NØDVENDIG SERVICE, "
-"REPARATION ELLER KORREKTION (OG IKKE HVERKEN DEN OPRINDELIGE FORFATTER, "
-"SKRIBENT ELLER NOGEN ANDEN BIDRAGYDER). DENNE ERKLÆRING OM GARANTIFORBEHOLD "
-"ER EN ESSENTIEL DEL AF DENNE LICENS. INGEN BRUG AF NOGET DOKUMENT ELLER "
-"ÆNDRET VERSION AF DOKUMENTET ER AUTORISERET HERUNDER BORTSET FRA DENNE "
-"ANSVARSFRASKRIVELSE OG"
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-"UNDER INGEN OMSTÆNDIGHEDER OG UNDER INGEN JURIDISK TEORI, UANSET OM DET ER "
-"EN BEVIDST SKADENDE HANDLING (INKLUSIVE UFORSVARLIGHED) ELLER PÅ HVILKEN SOM"
-" HELST ANDEN MÅDE, KAN FORFATTEREN, SKRIBENT, BIDRAGYDERE, DISTRIBUTØRER "
-"ELLER LEVERANDØR AF DETTE DOKUMENT ELLER MODIFICEREDE VERSIONER GØRES "
-"ANSVARLIG OVERFOR NOGEN PERSON FOR NOGEN DIREKTE, INDIREKTE, SPECIEL, "
-"TILFÆLDIG ELLER FØLGENDE SKADE PÅFØRT NOGEN INKLUSIVE, UDEN BEGRÆNSNING, "
-"SKADE SOM FØLGE AF TAB AF RYGTE, ARBEJDSSTOP, COMPUTERFEJL ELLER -SVIGT, "
-"ELLER ENHVER ANDEN FORM FOR SKADE ELLER TAB SOM ER OPSTÅET I FORBINDELSE MED"
-" BRUG AF DETTE DOKUMENT ELLER MODIFICEREDE VERSIONER HERAF, SELV HVIS EN "
-"SÅDAN PART HAR VÆRET INFORMERET OM MULIGHEDEN FOR SÅDANNE SKADER."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-"DOKUMENTET OG ÆNDREDE VERSIONER AF DOKUMENTET STILLES TIL RÅDIGHED UNDER GNU"
-" FREE DOCOMENTATION LICENSE MED FØLGENDE BETINGELSER: <_:orderedlist-1/>"
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
-"<surname>MATE-dokumentationsholdet</surname> <affiliation> <orgname>Mate-"
+"<surname>MATE-dokumentationsholdet</surname> <affiliation> <orgname>MATE-"
 "skrivebordet</orgname> </affiliation>"
 
 #. (itstool) path: authorgroup/author
@@ -262,15 +154,15 @@ msgstr "Introduktion"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
-"<application>Diskforbrugsanalyse</application> er et grafisk, menudrevent "
-"program til at analyse diskforbug i MATE. "
+"<application>Diskforbrugsanalyse</application> er et grafisk, af menuen "
+"styret  program til at analyse diskforbrug i MATE. "
 "<application>Diskforbrugsanalyse</application> kan nemt skanne enten hele "
-"filsystemtræet eller en specifik mappegren anmodet om af brugeren (lokal "
-"eller ekstern)."
+"filsystemtræet eller en specifik mappegren valgt af brugeren (lokal eller "
+"ekstern)."
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:144
@@ -301,7 +193,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 "fra Matemenuen "
@@ -339,7 +231,7 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 "Hvis startet fra Matemenuen, starter og bliver "
@@ -349,7 +241,7 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 "Når du starter <application>Diskanalyseforbrug</application> fra MATE-menuen"
@@ -369,10 +261,10 @@ msgstr "Vindue for Diskanalyseforbrug"
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 
 #. (itstool) path: screenshot/mediaobject
 #: C/index.docbook:177
@@ -458,10 +350,10 @@ msgstr "Diskanalyseforbrug - fuld filsys
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 
 #. (itstool) path: screenshot/mediaobject
 #: C/index.docbook:221
@@ -585,10 +477,10 @@ msgstr "Diskforbrugsanalyse - ekstern ma
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 
 #. (itstool) path: screenshot/mediaobject
 #: C/index.docbook:274
@@ -631,10 +523,10 @@ msgstr "Præferencevindue for Diskforbru
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 
 #. (itstool) path: screenshot/mediaobject
 #: C/index.docbook:302
@@ -973,3 +865,95 @@ msgstr ""
 " uden invariante afsnit, forsidetekster, samt bagsidetekster. Du kan se en "
 "kopi af GFDL her <_:ulink-1/> eller i filen COPYING-DOCS som distribueres "
 "sammen med denne manual."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+"Denne manual er en del af en samling af MATE-manualer distribueret under "
+"GFDL'en. Hvis du ønsker at distribuere denne manual separat fra samlingen, "
+"du kan gøre dette ved at tilføje en kopi af manualens licens, som beskrevet "
+"i afsnit 6 af denne licens."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+"En stor del af de navne som anvendes af firmaer til at identificere deres "
+"produkter og tjenester hævdes som værende varemærker. Hvor disse navne "
+"fremgår i en hvilken som helst MATE-dokumentation, og medlemmerne af  MATE-"
+"dokumentationsprojeket er gjort opmærksom på disse varemærker, så er disse "
+"navne vist med store bogstaver eller stort begyndelsesbogstav."
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+"DETTE DOKUMENT GØRES TILGÆNGELIGT SÅDAN SOM DET ER, UDEN NOGEN FORM FOR "
+"GARANTI, HVERKEN UDTALT ELLER ANTYDET, DERIBLANDT, UDEN BEGRÆNSNINGER, "
+"GARANTIER OM AT DOKUMENTET ELLER ÆNDREDE VERSIONER AF DOKUMENTET ER FRIT FOR"
+" DEFEKTER, PASSENDE TIL ET BESTEMT FORMÅL ELLER IKKE-KRÆNKENDE. DU HÆFTER "
+"SELV FOR HELE RISIKOEN VEDRØRENDE KVALITET, KORREKTHED OG YDELSE FOR "
+"DOKUMENTET ELLER ÆNDREDE VERSIONER AF DOKUMENTET. SKULLE ET DOKUMENT,  ELLER"
+" EN ÆNDRET VERSION AF ET DOKUMENT VISE SIG AT VÆRE DEFEKT PÅ EN HVILKEN SOM "
+"HELST MÅDE, HÆFTER DU FOR BETALING FOR EVENTUEL NØDVENDIG SERVICE, "
+"REPARATION ELLER KORREKTION (OG IKKE HVERKEN DEN OPRINDELIGE FORFATTER, "
+"SKRIBENT ELLER NOGEN ANDEN BIDRAGYDER). DENNE ERKLÆRING OM GARANTIFORBEHOLD "
+"ER EN ESSENTIEL DEL AF DENNE LICENS. INGEN BRUG AF NOGET DOKUMENT ELLER "
+"ÆNDRET VERSION AF DOKUMENTET ER AUTORISERET HERUNDER BORTSET FRA DENNE "
+"ANSVARSFRASKRIVELSE OG"
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+"UNDER INGEN OMSTÆNDIGHEDER OG UNDER INGEN JURIDISK TEORI, UANSET OM DET ER "
+"EN BEVIDST SKADENDE HANDLING (INKLUSIVE UFORSVARLIGHED) ELLER PÅ HVILKEN SOM"
+" HELST ANDEN MÅDE, KAN FORFATTEREN, SKRIBENT, BIDRAGYDERE, DISTRIBUTØRER "
+"ELLER LEVERANDØR AF DETTE DOKUMENT ELLER MODIFICEREDE VERSIONER GØRES "
+"ANSVARLIG OVERFOR NOGEN PERSON FOR NOGEN DIREKTE, INDIREKTE, SPECIEL, "
+"TILFÆLDIG ELLER FØLGENDE SKADE PÅFØRT NOGEN INKLUSIVE, UDEN BEGRÆNSNING, "
+"SKADE SOM FØLGE AF TAB AF RYGTE, ARBEJDSSTOP, COMPUTERFEJL ELLER -SVIGT, "
+"ELLER ENHVER ANDEN FORM FOR SKADE ELLER TAB SOM ER OPSTÅET I FORBINDELSE MED"
+" BRUG AF DETTE DOKUMENT ELLER MODIFICEREDE VERSIONER HERAF, SELV HVIS EN "
+"SÅDAN PART HAR VÆRET INFORMERET OM MULIGHEDEN FOR SÅDANNE SKADER."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
+"DOKUMENTET OG ÆNDREDE VERSIONER AF DOKUMENTET STILLES TIL RÅDIGHED UNDER GNU"
+" FREE DOCOMENTATION LICENSE MED FØLGENDE BETINGELSER: <_:orderedlist-1/>"
diff -pruN 1.24.0-1/baobab/help/da/index.docbook 1.26.0-0ubuntu1/baobab/help/da/index.docbook
--- 1.24.0-1/baobab/help/da/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/da/index.docbook	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,287 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="da">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title>Manual for diskforbrugsanalyse</title>
+
+    <abstract role="description">
+      <para>Diskforbrugsanalyse er en grafisk, menudrevet fremviser, som du kan bruge til at se og overvåge dit diskforbrug og mappestruktur.</para>
+    </abstract>
+
+    <copyright lang="en"><year>2015-2021</year> <holder>MATE-dokumentationsprojektet</holder></copyright>
+    <copyright><year>2006</year> <holder>Fabio Marzocca</holder></copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername>MATE-dokumentationsprojektet</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername>GNOME-dokumentationsprojektet</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"><surname>MATE-dokumentationsholdet</surname> <affiliation> <orgname>MATE-skrivebordet</orgname> </affiliation></author>
+   <author><firstname>Fabio</firstname> <surname>Marzocca</surname> <affiliation> <orgname>GNOME-dokumentationsprojektet</orgname> <address> <email>thesaltydog@gmail.com</email> </address> </affiliation></author> 
+
+   <author role="maintainer"><firstname>Fabio</firstname> <surname>Marzocca</surname> <affiliation> <address><email>thesaltydog@gmail.com</email></address> </affiliation></author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision><revnumber>Manual for Diskforbrugsanalyse version 1.10</revnumber> <date>Juli 2015</date> <revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich</para>
+	  		<para role="publisher">MATE-dokumentationsprojektet</para>
+		</revdescription></revision>
+      <revision><revnumber>Manual for Diskforbrugsanalyse version 1.0</revnumber> <date>April 2006</date> <revdescription> 
+	  		<para role="author">Emmanuele Bassi <email>ebassi@gmail.com</email></para>
+	  		<para role="publisher">GNOME-dokumentationsprojektet</para>
+		</revdescription></revision>
+    </revhistory> 
+
+    <releaseinfo>Denne manual beskriver version 1.10 af Diskforbrugsanalyse.</releaseinfo> 
+    
+    <legalnotice> 
+      <title>Tilbagemeldinger</title> 
+      <para>For at rapportere en fejl eller komme med et forslag jævnfør programmet Diskforbrugsanalyse denne manual, så følg retningslinjerne i <ulink url="help:mate-user-guide/feedback" type="help">MATE's side for tilbagemeldinger</ulink>.</para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm><primary>Diskforbrugsanalyse</primary></indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>Introduktion</title> 
+
+      <para><application>Diskforbrugsanalyse</application> er et grafisk, af menuen styret  program til at analyse diskforbrug i MATE. <application>Diskforbrugsanalyse</application> kan nemt skanne enten hele filsystemtræet eller en specifik mappegren valgt af brugeren (lokal eller ekstern).</para>
+       <para>Programmet registrerer også automatisk i realtid enhver ændring lavet til din hjemmemappe samt alle monterede/afmonterede enheder. <application>Diskforbrugsanalyse</application> tilbyder også et fuldt grafisk trækortsvindue for hver valgt mappe.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title>Kom i gang</title>
+
+    <para><application>Diskforbrugsanalyse</application> kan startes på en af tre måder:</para>
+	 <itemizedlist>
+    <listitem><para>fra Matemenuen <menuchoice><guimenu>Programmer</guimenu><guimenuitem>Tilbehør</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para>fra et terminalvindue;</para>
+    		</listitem>
+    <listitem><para>fraCaja »Åbn med ...« ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para>Hvis du ønsker at starte <application>Diskforbrugsanalyse</application> fra et terminalvindue, så tast:</para> 
+  
+<para><command>mate-disk-usage-analyzer &lt;fuld_sti_til_en_mappe&gt;</command>, tryk så på <keycap>Retur</keycap>.</para>  
+<para/> 
+	<para>Hvis startet fra Matemenuen, starter og bliver <application>Diskanalyseforbrug</application> i en standby tilstand, ventende på en brugerhandling.</para> 
+    <para>Når du starter <application>Diskanalyseforbrug</application> fra MATE-menuen vises det følgende vindue.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title>Vindue for Diskanalyseforbrug</title> 
+	<screenshot> 
+	  <mediaobject><imageobject> <imagedata fileref="figures/baobab_window.png" format="PNG"/> </imageobject> <textobject> <phrase>Viser Diskanalyseforbrugs hovedvindue. Indeholder menulinje, visningsområde, rullebjælker og statuslinje. </phrase> </textobject></mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para>Brugeren kan så:</para>
+	<itemizedlist>
+    <listitem><para>starte en fuld skanning af filsystemet;</para>
+    		</listitem>
+    <listitem><para>vælge en specifik lokal mappegren at skanne</para>
+    		</listitem>
+    <listitem><para>vælge en ekstern server og mappe at skanne</para>
+    		</listitem>
+    <listitem><para>angive præferencer</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Forbrug</title>
+
+    <sect2 id="baobab-fullscan">
+      <title>Fuld skanning af filsystem</title>
+        <para>For at starte en fuld filsystemskanning vælg <menuchoice><guimenu>Analyseprogram</guimenu><guimenuitem>Skan filsystem</guimenuitem></menuchoice> fra menuen, eller tryk på værktøjslinjeknappen <guibutton>Skan filsystemfilsystem</guibutton>.</para>
+
+	<para>Når skanningsprocessen slutter, så vil du få det fulde træ over dit filsystem, som det vist i den næste figur.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title>Diskanalyseforbrug - fuld filsystemskanning</title> 
+	<screenshot> 
+	  <mediaobject><imageobject> <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> </imageobject> <textobject> <phrase>Viser Diskanalyseforbrugs vindue for fuld filsystemskanning. Indeholder menulinje, visningsområde, rullebjælker og statuslinje. </phrase> </textobject></mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para>Når du afvikler en fuld filsystemskanning vil <application>Diskanalyseforbrugs</application> vindue starte tegning af træet så snart at tråden starter skanning af filsystemet. Hvis en stor partition er monteret  på filsystemet, vil den også blive skannet.</para></note>
+    
+    <para><application>Diskforbrugsanalyse</application> vil vise størrelser i mappetræet som allokeret plads. Dette betyder at de viste størrelser refererer til det faktiske diskforbrug og ikke til den tilsyneladende mappestørrelse. Hvis du ønsker at vise den tilsyneladende filstørrelse, så fjern kryds fra <menuchoice><guimenu>Vis</guimenu><guimenuitem>Allokeret plads</guimenuitem></menuchoice> .</para>
+    
+    <warning><para><application>Diskanalyseforbrug</application> vil ikke medtage /proc dir, eller andre filstørrelser som ikke er relateret til en »ren« fil, så symbolske henvisninger, tegnblokke, enhedsblokke vil ikke være en del af mappestørrelsen.</para></warning>
+   
+    <para>Hårde henvisninger håndteres på en anden måde: Den første hårde henvisning opfattes som en normal fil, mens de efterfølgende henvisninger til den samme iknudeenhed ikke medtages i totalen, men fremhæves i kolonnen til højre i vinduet.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title>Skanning af en enkelt mappe</title>
+
+    <para>For at starte skanning af en enkelt mappe vælg <menuchoice><guimenu>Analyseprogram</guimenu><guimenuitem>Skan mappe ...</guimenuitem></menuchoice> fra menuen, eller tryk på værktøjslinjeknappen <guibutton>Skan mappe</guibutton>.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title>Ekstern skanning</title>
+      
+      <para>Hvis du har brug for at skanne en ekstern servermappe, så klik bare på værktøjslinjens ikon <guibutton>Skan ekstern mappe</guibutton> eller vælg <menuchoice><guimenu>Analyseprogram</guimenu><guimenuitem>Skan ekstern mappe</guimenuitem></menuchoice> fra menuen og du får den følgende dialogboks. <application>Diskforbrugsanalyse</application> kan forbinde til en server via ssh, ftp, smb, http og https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title>Diskforbrugsanalyse - ekstern mappeskanning</title> 
+		<screenshot> 
+	 	 <mediaobject><imageobject> <imagedata fileref="figures/baobab_remote.png" format="PNG"/> </imageobject> <textobject> <phrase>Viser det eksterne mappedialogvinduet for Diskforbrugsanalyse. </phrase> </textobject></mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Præferencer</title>
+    
+    <para>For at ændre programpræferencerne for <application>Diskforbrugsanalyse</application>, vælg <menuchoice><guimenu>Rediger</guimenu><guimenuitem>Præferencer</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title>Præferencevindue for Diskforbrugsanalyse</title> 
+	<screenshot> 
+	  <mediaobject><imageobject> <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> </imageobject> <textobject> <phrase>Præferencevindue </phrase> </textobject></mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title>Vælg enheder at skanne</title>
+  <para>I den første del af præferencevinduet vises alle registrerede monterede enheder. Klik på boksen for at inkludere/ekskludere partitionen i operationerne for filsystemskanning.</para>
+  <note><para>Enheden monteret på »/« kan ikke ekskluderes fra skanningen.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title>Aktiver overvågning af hjem</title>
+      <para>Hvis denne indstilling er krydset af vil <application>Diskforbrugsanalyse</application> konstant overvåge alle eksterne ændringer til hjemmemappen og advare brugeren hvis en fil tilføjes/fjernes.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title>Trækort</title>
+
+    <para>Konceptet <guilabel>Trækort</guilabel> blev udviklet af Ben Shneiderman i 90'erne. Læs hans <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision om trækort</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title>Trækortsvindue for Diskforbrugsanalyse</title>
+	<screenshot> 
+	  <mediaobject><imageobject> <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> </imageobject> <textobject> <phrase>Treemaps teori. Viser 2 trækortsdiagrammer </phrase> </textobject></mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para>Figur viser et eksempel på trækorts teori. Hver knude (som vist i trædiagrammet) har et navn (et bogstav) og en associeret størrelse (et tal). Størrelsen på bladene kan for eksempel repræsentere størrelsen på individuelle filer, størrelsen på knuder, der ikke er blade, er summen på størrelsen for dens undermapper.</para> 
+    
+    <para>Trækortet er konstrueret via rekursiv underopdeling af den oprindelige rektangel. Størrelsen på hver underrektangel svarer til størrelsen på knuden. Retningen af underopdelingssuppleanter per niveau: første vandret, næste lodret, etcetera. Som resultat er den oprindelige rektangel opdelt i mindre rektangler, sådan at størrelsen af hver rektangel afspejler størrelsen på bladet. Strukturen på træet er også afspejlet i trækortet, som et resultat af dets konstruktion. Farve og annotation kan bruges til at give ekstra information om bladene.</para>
+
+	<note><para>Trækort er meget effektive når størrelse er den vigtigste funktion, der skal vises.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title>Ringdiagram</title>
+
+    <para><guilabel>Ringdiagram</guilabel> er en grafisk repræsentation af diskforbruget i en konkret mappe. Når programmet startes får det besked om brugen af filsystemet, som det kan ses i den næste figur:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title>Diskanalyseforbrug viser et ringdiagram med filsystemforbruget</title>
+      <screenshot> 
+	<mediaobject><imageobject> <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> </imageobject> <textobject> <phrase>Efter opstart af programmet vises filsystemts brug. Grafisk repræsentation til højre. </phrase> </textobject></mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para>Når du starter med at skanne en mappe så oprettes træet med undermapper og vises på den venstre side. Hver række indeholder information om navnet, hvor meget plads, der er brugt (procent og størrelse i KB, MB eller GB) og antallet af elementer (filer og mapper). Når denne proces er færdig tegnes <guilabel>Ringdiagrammet</guilabel> på den højre side. Hvis stopper før det er færdigt, så udføres kun en delvis repræsentation baseret på de mapper, hvis forbrug blev beregnet.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title>Diskforbrugsanalyse viser et ringdiagram med brugen af en mappe</title>
+      <screenshot> 
+	<mediaobject><imageobject> <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> </imageobject> <textobject> <phrase>Efter skanning af en mappe. </phrase> </textobject></mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para><guilabel>Ringdiagrammet</guilabel> består af et sæt af indlejrede ringe omkring en central cirkel. Denne cirkel symboliserer rodmappen for det delvise træ (dvs. mappen som brugeren har valgt for skanning). Hver ring repræsenterer et niveau i det delvise træ, så dvs. undermapperne for rodmappen vil blive repræsenteret i den første ring, og dybere niveauer i træet svarer til de ydre ringe i diagrammet. Hver undermappe repræsenteres af en sektor af ringen, dens vikel er proportionel med størrelsen på mappens indhold, og tegnet med en anden farve for at gøre visualiseringen tydeligere. Op til fem niveauer kan tegnes; i tilfælde af at en mappe i det sidste femte niveau har flere undermapper, så vil denne situation blive markeret med tilstedeværelsen af en sort kurve tæt på kanten af den mappes ringsektor. Når en mappe uden yderligere undermapper vælges som rod for det delvise træ, så vil kun den indre cirkel blive tegnet. Når musemarkøren bevæges over en af mapperne i grafikken, vil den blive fremhævet og et værktøjsfif vises med information om dens navn og størrelse. Hvis der er undermapper, så vil små grå værktøjsfif blive vist, indikerende deres navne. Det er muligt, at ikke alle undermappernes navne bliver vist for at undgå overlap.</para>
+
+    <para>Du kan gå op og ned i rækkerne i listen (og valgfrit udvide dem med undermapper), den grafiske repræsentation vil ændre sig med den valgte mappe som rod for det delvise træ. Mapperne kan også navigeres fra selve <guilabel>ringdiagrammet</guilabel>. Hvis du klikker på den venstre knap på musen inden i en mappe, så går du dybere ved at sætte roden for grafikken til den mappe. Hvis du trykker på den midterste knap (uanset sted så længe du klikker inden i rammen for <guilabel>ringdiagrammet</guilabel>), så vil du få den modsatte opførelse, du går et trin tilbage i hierarkiet.</para>
+
+    <para>Procenten for overmappens radius, som bruges af en given mappe, er direkte proportionel med relationen mellem sin egen størrelse og overmappernes. Det er nemt at forstå, at størrelsen på en mappe svarer til eller er mindre end overmappernes. Selvom kun mapper vises i den grafiske repræsentation, så bliver der taget højde for filer i beregningen af mængden af plads optaget af mapper.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/da/legal.xml 1.26.0-0ubuntu1/baobab/help/da/legal.xml
--- 1.24.0-1/baobab/help/da/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/da/legal.xml	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>Tilladelse er givet til at kopiere, distribuere og/eller ændre dette dokument under betingelserne i GNU Free Documentation License (GFDL), version 1.1 eller enhver senere version udgivet af Free Software Foundation; uden invariante afsnit, forsidetekster, samt bagsidetekster. Du kan se en kopi af GFDL her <ulink type="help" url="help:fdl">henvisning</ulink> eller i filen COPYING-DOCS som distribueres sammen med denne manual.</para>
+         <para>Denne manual er en del af en samling af MATE-manualer distribueret under GFDL'en. Hvis du ønsker at distribuere denne manual separat fra samlingen, du kan gøre dette ved at tilføje en kopi af manualens licens, som beskrevet i afsnit 6 af denne licens.</para>
+
+	<para>En stor del af de navne som anvendes af firmaer til at identificere deres produkter og tjenester hævdes som værende varemærker. Hvor disse navne fremgår i en hvilken som helst MATE-dokumentation, og medlemmerne af  MATE-dokumentationsprojeket er gjort opmærksom på disse varemærker, så er disse navne vist med store bogstaver eller stort begyndelsesbogstav.</para>
+
+	<para>DOKUMENTET OG ÆNDREDE VERSIONER AF DOKUMENTET STILLES TIL RÅDIGHED UNDER GNU FREE DOCOMENTATION LICENSE MED FØLGENDE BETINGELSER: <orderedlist>
+		<listitem>
+		  <para>DETTE DOKUMENT GØRES TILGÆNGELIGT SÅDAN SOM DET ER, UDEN NOGEN FORM FOR GARANTI, HVERKEN UDTALT ELLER ANTYDET, DERIBLANDT, UDEN BEGRÆNSNINGER, GARANTIER OM AT DOKUMENTET ELLER ÆNDREDE VERSIONER AF DOKUMENTET ER FRIT FOR DEFEKTER, PASSENDE TIL ET BESTEMT FORMÅL ELLER IKKE-KRÆNKENDE. DU HÆFTER SELV FOR HELE RISIKOEN VEDRØRENDE KVALITET, KORREKTHED OG YDELSE FOR DOKUMENTET ELLER ÆNDREDE VERSIONER AF DOKUMENTET. SKULLE ET DOKUMENT,  ELLER EN ÆNDRET VERSION AF ET DOKUMENT VISE SIG AT VÆRE DEFEKT PÅ EN HVILKEN SOM HELST MÅDE, HÆFTER DU FOR BETALING FOR EVENTUEL NØDVENDIG SERVICE, REPARATION ELLER KORREKTION (OG IKKE HVERKEN DEN OPRINDELIGE FORFATTER, SKRIBENT ELLER NOGEN ANDEN BIDRAGYDER). DENNE ERKLÆRING OM GARANTIFORBEHOLD ER EN ESSENTIEL DEL AF DENNE LICENS. INGEN BRUG AF NOGET DOKUMENT ELLER ÆNDRET VERSION AF DOKUMENTET ER AUTORISERET HERUNDER BORTSET FRA DENNE ANSVARSFRASKRIVELSE OG</para>
+		</listitem>
+		<listitem>
+		  <para>UNDER INGEN OMSTÆNDIGHEDER OG UNDER INGEN JURIDISK TEORI, UANSET OM DET ER EN BEVIDST SKADENDE HANDLING (INKLUSIVE UFORSVARLIGHED) ELLER PÅ HVILKEN SOM HELST ANDEN MÅDE, KAN FORFATTEREN, SKRIBENT, BIDRAGYDERE, DISTRIBUTØRER ELLER LEVERANDØR AF DETTE DOKUMENT ELLER MODIFICEREDE VERSIONER GØRES ANSVARLIG OVERFOR NOGEN PERSON FOR NOGEN DIREKTE, INDIREKTE, SPECIEL, TILFÆLDIG ELLER FØLGENDE SKADE PÅFØRT NOGEN INKLUSIVE, UDEN BEGRÆNSNING, SKADE SOM FØLGE AF TAB AF RYGTE, ARBEJDSSTOP, COMPUTERFEJL ELLER -SVIGT, ELLER ENHVER ANDEN FORM FOR SKADE ELLER TAB SOM ER OPSTÅET I FORBINDELSE MED BRUG AF DETTE DOKUMENT ELLER MODIFICEREDE VERSIONER HERAF, SELV HVIS EN SÅDAN PART HAR VÆRET INFORMERET OM MULIGHEDEN FOR SÅDANNE SKADER.</para>
+		</listitem>
+	  </orderedlist></para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/de/de.po 1.26.0-0ubuntu1/baobab/help/de/de.po
--- 1.24.0-1/baobab/help/de/de.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/de/de.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,17 +1,18 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # Ettore Atalan <atalanttore@googlemail.com>, 2018
 # Tobias Bannert <tobannert@gmail.com>, 2018
 # Wolfgang Ulbrich <mate@raveit.de>, 2018
 # Moritz Bruder <muesli4@gmail.com>, 2018
-# Julian Rüger <jr98@gmx.net>, 2018
+# Julian Rüger <jr98@gmx.net>, 2021
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
-"Last-Translator: Julian Rüger <jr98@gmx.net>, 2018\n"
+"Last-Translator: Julian Rüger <jr98@gmx.net>, 2021\n"
 "Language-Team: German (https://www.transifex.com/mate/teams/13566/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -45,7 +46,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -65,127 +66,11 @@ msgstr "MATE-Dokumentationsprojekt"
 msgid "GNOME Documentation Project"
 msgstr "GNOME-Dokumentationsprojekt"
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-"Das vorliegende Dokument kann gemäß den Bedingungen der GNU Free "
-"Documentation License (GFDL), Version 1.1 oder jeder späteren, von der Free "
-"Software Foundation veröffentlichten Version ohne unveränderbare Abschnitte "
-"sowie ohne Texte auf dem vorderen und hinteren Buchdeckel kopiert, verteilt "
-"und/oder modifiziert werden. Eine Kopie der GFDL finden Sie unter diesem "
-"<ulink type=\"help\" url=\"help:fdl\">Link</ulink> oder in der mit diesem "
-"Handbuch gelieferten Datei COPYING-DOCS."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-"Das vorliegende Handbuch ist Teil einer Reihe von MATE-Handbüchern, die "
-"unter der GFDL verteilt werden. Wenn Sie dieses Handbuch separat verteilen "
-"möchten, können Sie dies tun, indem Sie dem Handbuch eine Kopie der Lizenz, "
-"wie in Abschnitt 6 der Lizenz beschrieben, hinzufügen."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-"Bei vielen der von Firmen zur Unterscheidung ihrer Produkte und "
-"Dienstleistungen verwendeten Namen handelt es sich um Marken. An den "
-"Stellen, an denen derartige Namen in einer MATE-Dokumentation vorkommen und "
-"wenn die Mitglieder des MATE Documentation Project über diese Marken "
-"informiert wurden, sind die Namen in Grossbuchstaben oder mit großen "
-"Anfangsbuchstaben geschrieben."
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-"DAS DOKUMENT WIRD »WIE VORLIEGEND« GELIEFERT, OHNE JEGLICHE GEWÄHRLEISTUNG, "
-"WEDER AUSDRÜCKLICH NOCH STILLSCHWEIGEND, EINSCHLIESSLICH, ABER NICHT "
-"BESCHRÄNKT AUF, GEWÄHRLEISTUNGEN, DASS DAS DOKUMENT ODER EINE MODIFIZIERTE "
-"VERSION DES DOKUMENTS FREI VON HANDELSÜBLICHEN FEHLERN UND FÜR EINEN "
-"BESTIMMTEN ZWECK GEEIGNET IST UND KEINE RECHTE DRITTER VERLETZT. JEGLICHES "
-"RISIKO IN BEZUG AUF DIE QUALITÄT, GENAUIGKEIT UND LEISTUNG DES DOKUMENTS "
-"ODER EINER MODIFIZIERTEN VERSION DES DOKUMENTS TRAGEN SIE. SOLLTE SICH EIN "
-"DOKUMENT ODER EINE MODIFIZIERTE VERSION DAVON IN IRGENDEINER WEISE ALS "
-"FEHLERHAFT ERWEISEN, TRAGEN SIE (NICHT DER URSPRÜNGLICHE VERFASSER, AUTOR "
-"ODER EIN MITWIRKENDER) DIE KOSTEN FÜR JEGLICHE ERFORDERLICHE SERVICE-, "
-"REPARATUR- UND KORREKTURMASSNAHMEN: DIESE BESCHRÄNKUNG DER GEWÄHRLEISTUNG "
-"IST WESENTLICHER BESTANDTEIL DIESER LIZENZ. JEDE VERWENDUNG EINES DOKUMENTS "
-"ODER EINER MODIFIZIERTEN VERSION DES DOKUMENTS UNTERLIEGT DIESER "
-"BESCHRÄNKUNG; UND"
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-"UNTER KEINEN UMSTÄNDEN UND GEMÄSS KEINER RECHTSLEHRE, WEDER AUFGRUND VON "
-"UNERLAUBTEN HANDLUNGEN (EINSCHLIESSLICH FAHRLÄSSIGKEIT), VERTRÄGEN ODER "
-"SONSTIGEM, KANN DER AUTOR, DER URSPRÜNGLICHE VERFASSER, EIN MITWIRKENDER "
-"ODER EIN VERTEILER DES DOKUMENTS ODER EINER MODIFIZIERTEN VERSION DES "
-"DOKUMENTS ODER EIN LIEFERANT EINER DIESER PARTEIEN VON EINER PERSON FÜR "
-"DIREKTE, INDIREKTE, BESONDERE, ZUFÄLLIGE ODER ALS FOLGE AUFGETRETENE SCHÄDEN"
-" IRGENDEINER ART, EINSCHLIESSLICH, ABER NICHT BESCHRÄNKT AUF, SCHÄDEN DURCH "
-"GESCHÄFTSWERTVERLUSTE, ARBEITSAUSFÄLLE, COMPUTERAUSFÄLLE ODER "
-"-FUNKTIONSSTÖRUNGEN ODER JEGLICHE ANDERE SCHÄDEN ODER VERLUSTE, DIE DURCH "
-"ODER IM ZUSAMMENHANG MIT DER VERWENDUNG DES DOKUMENTS ODER EINER "
-"MODIFIZIERTEN VERSION DES DOKUMENTS ENTSTANDEN SIND, SELBST WENN DIESE "
-"PARTEI ÜBER MÖGLICHE SCHÄDEN INFORMIERT WORDEN SEIN SOLLTE, HAFTBAR GEMACHT "
-"WERDEN."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-"DAS DOKUMENT SOWIE MODIFIZIERTE VERSIONEN DAVON WERDEN UNTER DEN BEDINGUNGEN"
-" DER GNU FREE DOCUMENTATION LICENSE BEREITGESTELLT, MIT DEM WEITEREN "
-"VERSTÄNDNIS, DASS:  <_:orderedlist-1/>"
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -244,6 +129,10 @@ msgid ""
 "application or this manual, follow the directions in the <ulink url=\"help"
 ":mate-user-guide/feedback\" type=\"help\">MATE Feedback Page</ulink>."
 msgstr ""
+"Um einen Fehler zu melden oder eine Verbesserung bzgl. der "
+"Festplattenbelegungsanalyse oder dieses Handbuchs vorzuschlagen, folgen Sie "
+"den Anweisungen auf der <ulink url=\"help:mate-user-guide/feedback\" "
+"type=\"help\">MATE-Rückmeldungsseite</ulink>."
 
 #. (itstool) path: article/indexterm
 #: C/index.docbook:130
@@ -259,7 +148,7 @@ msgstr "Einführung"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -287,7 +176,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -319,14 +208,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -344,7 +233,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -421,7 +310,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -514,7 +403,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -552,7 +441,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -807,3 +696,101 @@ msgstr ""
 "ohne Texte auf dem vorderen und hinteren Buchdeckel. Eine Kopie der GFDL "
 "finden Sie unter diesem <_:ulink-1/> oder in der mit diesem Handbuch "
 "gelieferten Datei COPYING-DOCS."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+"Das vorliegende Handbuch ist Teil einer Reihe von MATE-Handbüchern, die "
+"unter der GFDL verteilt werden. Wenn Sie dieses Handbuch separat verteilen "
+"möchten, können Sie dies tun, indem Sie dem Handbuch eine Kopie der Lizenz, "
+"wie in Abschnitt 6 der Lizenz beschrieben, hinzufügen."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+"Bei vielen der von Firmen zur Unterscheidung ihrer Produkte und "
+"Dienstleistungen verwendeten Namen handelt es sich um Marken. An den "
+"Stellen, an denen derartige Namen in einer MATE-Dokumentation vorkommen und "
+"wenn die Mitglieder des MATE Documentation Project über diese Marken "
+"informiert wurden, sind die Namen in Grossbuchstaben oder mit großen "
+"Anfangsbuchstaben geschrieben."
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+"DAS DOKUMENT WIRD »WIE VORLIEGEND« GELIEFERT, OHNE JEGLICHE GEWÄHRLEISTUNG, "
+"WEDER AUSDRÜCKLICH NOCH STILLSCHWEIGEND, EINSCHLIESSLICH, ABER NICHT "
+"BESCHRÄNKT AUF, GEWÄHRLEISTUNGEN, DASS DAS DOKUMENT ODER EINE MODIFIZIERTE "
+"VERSION DES DOKUMENTS FREI VON HANDELSÜBLICHEN FEHLERN UND FÜR EINEN "
+"BESTIMMTEN ZWECK GEEIGNET IST UND KEINE RECHTE DRITTER VERLETZT. JEGLICHES "
+"RISIKO IN BEZUG AUF DIE QUALITÄT, GENAUIGKEIT UND LEISTUNG DES DOKUMENTS "
+"ODER EINER MODIFIZIERTEN VERSION DES DOKUMENTS TRAGEN SIE. SOLLTE SICH EIN "
+"DOKUMENT ODER EINE MODIFIZIERTE VERSION DAVON IN IRGENDEINER WEISE ALS "
+"FEHLERHAFT ERWEISEN, TRAGEN SIE (NICHT DER URSPRÜNGLICHE VERFASSER, AUTOR "
+"ODER EIN MITWIRKENDER) DIE KOSTEN FÜR JEGLICHE ERFORDERLICHE SERVICE-, "
+"REPARATUR- UND KORREKTURMASSNAHMEN: DIESE BESCHRÄNKUNG DER GEWÄHRLEISTUNG "
+"IST WESENTLICHER BESTANDTEIL DIESER LIZENZ. JEDE VERWENDUNG EINES DOKUMENTS "
+"ODER EINER MODIFIZIERTEN VERSION DES DOKUMENTS UNTERLIEGT DIESER "
+"BESCHRÄNKUNG; UND"
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+"UNTER KEINEN UMSTÄNDEN UND GEMÄSS KEINER RECHTSLEHRE, WEDER AUFGRUND VON "
+"UNERLAUBTEN HANDLUNGEN (EINSCHLIESSLICH FAHRLÄSSIGKEIT), VERTRÄGEN ODER "
+"SONSTIGEM, KANN DER AUTOR, DER URSPRÜNGLICHE VERFASSER, EIN MITWIRKENDER "
+"ODER EIN VERTEILER DES DOKUMENTS ODER EINER MODIFIZIERTEN VERSION DES "
+"DOKUMENTS ODER EIN LIEFERANT EINER DIESER PARTEIEN VON EINER PERSON FÜR "
+"DIREKTE, INDIREKTE, BESONDERE, ZUFÄLLIGE ODER ALS FOLGE AUFGETRETENE SCHÄDEN"
+" IRGENDEINER ART, EINSCHLIESSLICH, ABER NICHT BESCHRÄNKT AUF, SCHÄDEN DURCH "
+"GESCHÄFTSWERTVERLUSTE, ARBEITSAUSFÄLLE, COMPUTERAUSFÄLLE ODER "
+"-FUNKTIONSSTÖRUNGEN ODER JEGLICHE ANDERE SCHÄDEN ODER VERLUSTE, DIE DURCH "
+"ODER IM ZUSAMMENHANG MIT DER VERWENDUNG DES DOKUMENTS ODER EINER "
+"MODIFIZIERTEN VERSION DES DOKUMENTS ENTSTANDEN SIND, SELBST WENN DIESE "
+"PARTEI ÜBER MÖGLICHE SCHÄDEN INFORMIERT WORDEN SEIN SOLLTE, HAFTBAR GEMACHT "
+"WERDEN."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
+"DAS DOKUMENT SOWIE MODIFIZIERTE VERSIONEN DAVON WERDEN UNTER DEN BEDINGUNGEN"
+" DER GNU FREE DOCUMENTATION LICENSE BEREITGESTELLT, MIT DEM WEITEREN "
+"VERSTÄNDNIS, DASS:  <_:orderedlist-1/>"
diff -pruN 1.24.0-1/baobab/help/de/index.docbook 1.26.0-0ubuntu1/baobab/help/de/index.docbook
--- 1.24.0-1/baobab/help/de/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/de/index.docbook	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,461 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="de">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername>MATE-Dokumentationsprojekt</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername>GNOME-Dokumentationsprojekt</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title>Rückmeldungen</title> 
+      <para>Um einen Fehler zu melden oder eine Verbesserung bzgl. der Festplattenbelegungsanalyse oder dieses Handbuchs vorzuschlagen, folgen Sie den Anweisungen auf der <ulink url="help:mate-user-guide/feedback" type="help">MATE-Rückmeldungsseite</ulink>.</para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>Einführung</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title>Erste Schritte</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Verwendung</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Einstellungen</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/de/legal.xml 1.26.0-0ubuntu1/baobab/help/de/legal.xml
--- 1.24.0-1/baobab/help/de/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/de/legal.xml	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>Die Erlaubnis, das vorliegende Dokument zu kopieren, verteilen und/oder modifizieren wird erteilt gemäß den Bedingungen der GNU Free Documentation License (GFDL), Version 1.1 oder jeder späteren, von der Free Software Foundation veröffentlichten Version ohne unveränderbare Abschnitte sowie ohne Texte auf dem vorderen und hinteren Buchdeckel. Eine Kopie der GFDL finden Sie unter diesem <ulink type="help" url="help:fdl">Verknüpfung</ulink> oder in der mit diesem Handbuch gelieferten Datei COPYING-DOCS.</para>
+         <para>Das vorliegende Handbuch ist Teil einer Reihe von MATE-Handbüchern, die unter der GFDL verteilt werden. Wenn Sie dieses Handbuch separat verteilen möchten, können Sie dies tun, indem Sie dem Handbuch eine Kopie der Lizenz, wie in Abschnitt 6 der Lizenz beschrieben, hinzufügen.</para>
+
+	<para>Bei vielen der von Firmen zur Unterscheidung ihrer Produkte und Dienstleistungen verwendeten Namen handelt es sich um Marken. An den Stellen, an denen derartige Namen in einer MATE-Dokumentation vorkommen und wenn die Mitglieder des MATE Documentation Project über diese Marken informiert wurden, sind die Namen in Grossbuchstaben oder mit großen Anfangsbuchstaben geschrieben.</para>
+
+	<para>DAS DOKUMENT SOWIE MODIFIZIERTE VERSIONEN DAVON WERDEN UNTER DEN BEDINGUNGEN DER GNU FREE DOCUMENTATION LICENSE BEREITGESTELLT, MIT DEM WEITEREN VERSTÄNDNIS, DASS:  <orderedlist>
+		<listitem>
+		  <para>DAS DOKUMENT WIRD »WIE VORLIEGEND« GELIEFERT, OHNE JEGLICHE GEWÄHRLEISTUNG, WEDER AUSDRÜCKLICH NOCH STILLSCHWEIGEND, EINSCHLIESSLICH, ABER NICHT BESCHRÄNKT AUF, GEWÄHRLEISTUNGEN, DASS DAS DOKUMENT ODER EINE MODIFIZIERTE VERSION DES DOKUMENTS FREI VON HANDELSÜBLICHEN FEHLERN UND FÜR EINEN BESTIMMTEN ZWECK GEEIGNET IST UND KEINE RECHTE DRITTER VERLETZT. JEGLICHES RISIKO IN BEZUG AUF DIE QUALITÄT, GENAUIGKEIT UND LEISTUNG DES DOKUMENTS ODER EINER MODIFIZIERTEN VERSION DES DOKUMENTS TRAGEN SIE. SOLLTE SICH EIN DOKUMENT ODER EINE MODIFIZIERTE VERSION DAVON IN IRGENDEINER WEISE ALS FEHLERHAFT ERWEISEN, TRAGEN SIE (NICHT DER URSPRÜNGLICHE VERFASSER, AUTOR ODER EIN MITWIRKENDER) DIE KOSTEN FÜR JEGLICHE ERFORDERLICHE SERVICE-, REPARATUR- UND KORREKTURMASSNAHMEN: DIESE BESCHRÄNKUNG DER GEWÄHRLEISTUNG IST WESENTLICHER BESTANDTEIL DIESER LIZENZ. JEDE VERWENDUNG EINES DOKUMENTS ODER EINER MODIFIZIERTEN VERSION DES DOKUMENTS UNTERLIEGT DIESER BESCHRÄNKUNG; UND</para>
+		</listitem>
+		<listitem>
+		  <para>UNTER KEINEN UMSTÄNDEN UND GEMÄSS KEINER RECHTSLEHRE, WEDER AUFGRUND VON UNERLAUBTEN HANDLUNGEN (EINSCHLIESSLICH FAHRLÄSSIGKEIT), VERTRÄGEN ODER SONSTIGEM, KANN DER AUTOR, DER URSPRÜNGLICHE VERFASSER, EIN MITWIRKENDER ODER EIN VERTEILER DES DOKUMENTS ODER EINER MODIFIZIERTEN VERSION DES DOKUMENTS ODER EIN LIEFERANT EINER DIESER PARTEIEN VON EINER PERSON FÜR DIREKTE, INDIREKTE, BESONDERE, ZUFÄLLIGE ODER ALS FOLGE AUFGETRETENE SCHÄDEN IRGENDEINER ART, EINSCHLIESSLICH, ABER NICHT BESCHRÄNKT AUF, SCHÄDEN DURCH GESCHÄFTSWERTVERLUSTE, ARBEITSAUSFÄLLE, COMPUTERAUSFÄLLE ODER -FUNKTIONSSTÖRUNGEN ODER JEGLICHE ANDERE SCHÄDEN ODER VERLUSTE, DIE DURCH ODER IM ZUSAMMENHANG MIT DER VERWENDUNG DES DOKUMENTS ODER EINER MODIFIZIERTEN VERSION DES DOKUMENTS ENTSTANDEN SIND, SELBST WENN DIESE PARTEI ÜBER MÖGLICHE SCHÄDEN INFORMIERT WORDEN SEIN SOLLTE, HAFTBAR GEMACHT WERDEN.</para>
+		</listitem>
+	  </orderedlist></para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/dz/dz.po 1.26.0-0ubuntu1/baobab/help/dz/dz.po
--- 1.24.0-1/baobab/help/dz/dz.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/dz/dz.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,10 +1,11 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
 "Language-Team: Dzongkha (https://www.transifex.com/mate/teams/13566/dz/)\n"
@@ -36,7 +37,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -56,80 +57,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -203,7 +135,7 @@ msgstr ""
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -231,7 +163,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -263,14 +195,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -288,7 +220,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -365,7 +297,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -458,7 +390,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -496,7 +428,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -744,3 +676,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/dz/index.docbook 1.26.0-0ubuntu1/baobab/help/dz/index.docbook
--- 1.24.0-1/baobab/help/dz/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/dz/index.docbook	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="dz">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title lang="en">Introduction</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>བེད་སྤྱོད་</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>དགའ་གདམ་ཚུ།</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/dz/legal.xml 1.26.0-0ubuntu1/baobab/help/dz/legal.xml
--- 1.24.0-1/baobab/help/dz/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/dz/legal.xml	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/el/el.po 1.26.0-0ubuntu1/baobab/help/el/el.po
--- 1.24.0-1/baobab/help/el/el.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/el/el.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,17 +1,18 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # Wolfgang Ulbrich <mate@raveit.de>, 2018
-# Αλέξανδρος Καπετάνιος <alexandros@gnugr.org>, 2018
+# Alexandros Kapetanios <alexandros@gnugr.org>, 2018
 # 437c9d6e19936ed69f57bed9e0fe4716, 2018
 # kosmmart <kosmmartak@gmail.com>, 2018
-# TheDimitris15 <dhmhtrhs150@gmail.com>, 2019
+# TheDimitris15, 2019
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
-"Last-Translator: TheDimitris15 <dhmhtrhs150@gmail.com>, 2019\n"
+"Last-Translator: TheDimitris15, 2019\n"
 "Language-Team: Greek (https://www.transifex.com/mate/teams/13566/el/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -42,7 +43,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -62,115 +63,11 @@ msgstr "Έργο Τεκμηρίωσης
 msgid "GNOME Documentation Project"
 msgstr "Έργο τεκμηρίωσης GNOME"
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-"Δίνεται άδεια για αντιγραφή, διανομή και/ή τροποποίηση του εγγράφου υπό τους"
-" όρους της Ελεύθερης Άδειας Τεκμηρίωσης GNU (GFDL), Έκδοση 1.1 ή "
-"μεταγενέστερη εκδιδόμενη από το Ίδρυμα Ελεύθερου Λογισμικού χωρίς Σταθερά "
-"Εδάφια, χωρίς Εξώφυλλα Κειμένου, και χωρίς Οπισθόφυλλα Κειμένου. Μπορείτε να"
-" βρείτε ένα αντίγραφο της GFDL σε αυτόν τον <ulink type=\"help\" "
-"url=\"help:fdl\">σύνδεσμο</ulink> ή στο αρχείο COPYING-DOCS που διανεμήθηκε "
-"με αυτόν τον οδηγό."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-"Αυτή η τεκμηρίωση είναι μέρος της συλλογής τεκμηρίωσης του MATE όπως "
-"διανέμεται υπό τους όρους του GFDL. Εάν επιθυμείτε να διανείμετε αυτή την "
-"τεκμηρίωση ξεχωριστά από την συλλογή, μπορείτε να το κάνετε εάν η τεκμηρίωση"
-" συνοδεύεται από αντίγραφο της άδειας (GFDL) όπως περιγράφεται στον τομέα 6 "
-"της άδειας."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-"Πολλά από τα ονόματα που χρησιμοποιούνται από εταιρίες για να ξεχωρίσουν τα "
-"προϊόντα και τις υπηρεσίες είναι σήματα κατατεθέν. Όπου αυτά τα ονόματα "
-"εμφανίζονται στην τεκμηρίωση MATE, και τα μέλη της ομάδας τεκμηρίωσης MATE "
-"έχουν γνώση αυτών, τότε αυτά αναγράφονται με κεφαλαίους χαρακτήρες ή με "
-"αρχικούς κεφαλαίους χαρακτήρες."
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-"Η ΤΕΚΜΗΡΙΩΣΗ ΑΥΤΗ ΠΑΡΕΧΕΤΑΙ \"ΩΣ ΕΧΕΙ\", ΧΩΡΙΣ ΚΑΜΙΑ ΕΓΓΥΗΣΗ ΟΤΙ ΜΠΟΡΕΙ ΝΑ "
-"ΕΞΥΠΗΡΕΤΗΣΕΙ ΚΑΠΟΙΟ ΣΚΟΠΟ Η ΟΤΙ ΕΙΝΑΙ ΧΩΡΙΣ ΣΦΑΛΜΑ. ΟΛΟΚΛΗΡΗ Η ΕΥΘΥΝΗ ΓΙΑ "
-"ΤΗΝ ΠΟΙΟΤΗΤΑ, ΑΚΡΙΒΕΙΑ ΚΑΙ ΛΕΙΤΟΥΡΓΙΚΟΤΗΤΑ ΤΗΣ ΤΕΚΜΗΡΙΩΣΗΣ Ή ΠΑΡΑΛΛΑΓΩΝ "
-"ΑΥΤΗΣ ΑΝΗΚΕΙ ΣΕ ΕΣΑΣ. ΕΑΝ Η ΤΕΚΜΗΡΙΩΣΗ ΑΥΤΗ Ή ΠΑΡΑΛΛΑΓΗ ΑΥΤΗΣ ΕΙΝΑΙ ΛΑΘΟΣ "
-"ΚΑΤΑ ΚΑΠΟΙΟ ΤΡΟΠΟ ΕΣΕΙΣ ΑΝΑΛΑΜΒΑΝΕΤΕ ΤΗΝ ΕΥΘΥΝΗ ΤΗΣ ΔΙΟΡΘΩΣΗΣ. Η ΑΠΑΛΛΑΓΗ "
-"ΕΥΘΥΝΗΣ ΠΟΥ ΣΥΝΟΔΕΥΕΙ ΑΥΤΗ ΤΗΝ ΤΕΚΜΗΡΙΩΣΗ ΕΙΝΑΙ ΑΝΑΠΟΣΠΑΣΤΟ ΚΟΜΜΑΤΙ ΑΥΤΗΣ. "
-"ΚΑΜΙΑ ΧΡΗΣΗ ΤΗΣ ΤΕΚΜΗΡΙΩΣΗΣ Ή ΠΑΡΑΛΛΑΓΩΝ ΑΥΤΗΣ ΔΕΝ ΕΠΙΤΡΕΠΕΤΑΙ ΠΑΡΑ ΜΟΝΟ ΕΑΝ"
-" ΣΥΝΟΔΕΥΕΤΑΙ ΑΠΟ ΤΗΝ ΑΠΑΛΛΑΓΗ ΕΥΘΥΝΗΣ."
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-"ΣΕ ΚΑΜΙΑ ΠΕΡΙΠΤΩΣΗ ΚΑΙ ΥΠΟ ΚΑΜΙΑ ΝΟΜΙΚΗ ΣΥΝΘΗΚΗ, ΕΙΤΕ ΜΕΣΩ ΣΥΜΒΟΛΑΙΩΝ Ή "
-"ΑΛΛΙΩΣ, ΔΕΝ ΕΥΘΥΝΟΝΤΑΙ Ο ΣΥΓΓΡΑΦΕΑΣ, Ο ΔΙΑΝΟΜΕΑΣ, Η ΑΛΛΟΣ ΣΥΝΥΠΕΥΘΥΝΟΣ ΓΙΑ "
-"ΤΗΝ ΣΥΓΓΡΑΦΗ ΤΗΣ ΤΕΚΜΗΡΙΩΣΗΣ, ΓΙΑ ΕΜΜΕΣΕΣ Η ΑΜΕΣΕΣ, ΤΥΧΑΙΕΣ Ή ΜΗ ΖΗΜΙΕΣ "
-"ΠΑΝΤΩΣ ΦΥΣΕΩΣ ΠΟΥ ΠΡΟΕΡΧΟΝΤΑΙ ΑΠΟ ΤΗΝ ΧΡΗΣΗ ΤΗΣ ΤΕΚΜΗΡΙΩΣΗΣ ΚΑΙ/Ή ΠΑΡΑΛΛΑΓΩΝ"
-" ΑΥΤΗΣ ΑΚΟΜΑ ΚΑΙ ΕΑΝ ΕΧΕΙ ΥΠΑΡΞΕΙ ΠΡΟΕΙΔΟΠΟΙΗΣΗ ΓΙΑ ΤΗΝ ΠΙΘΑΝΟΤΗΤΑ ΥΠΑΡΞΗΣ "
-"ΤΕΤΟΙΩΝ ΖΗΜΙΩΝ."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-"Η οθόνη προσβασιμότητας πληκτρολογίου σας δείχνει την κατάσταση των "
-"χαρακτηριστικών προσβασιμότητας πληκτρολογίου όταν αυτά χρησιμοποιούνται. "
-"Για παράδειγμα, μπορείτε να δείτε ποια πλήκτρα τροποποίησης είναι ενεργά και"
-" ποια κουμπιά του ποντικιού πιέζονται μέσω του πληκτρολογίου."
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -244,7 +141,7 @@ msgstr "Εισαγωγή"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -272,7 +169,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -304,14 +201,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -329,7 +226,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -406,7 +303,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -499,7 +396,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -537,7 +434,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -792,3 +689,89 @@ msgstr ""
 "Προσωρινού Εξώφυλλου και Κανένα κείμενο πίσω. Μπορείτε να βρείτε ένα "
 "αντίγραφο του GFDL σε αυτό <_:ulink-1/> ή στο αρχείο COPYING-DOCS που "
 "διανέμεται με αυτό το εγχειρίδιο."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+"Αυτή η τεκμηρίωση είναι μέρος της συλλογής τεκμηρίωσης του MATE όπως "
+"διανέμεται υπό τους όρους του GFDL. Εάν επιθυμείτε να διανείμετε αυτή την "
+"τεκμηρίωση ξεχωριστά από την συλλογή, μπορείτε να το κάνετε εάν η τεκμηρίωση"
+" συνοδεύεται από αντίγραφο της άδειας (GFDL) όπως περιγράφεται στον τομέα 6 "
+"της άδειας."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+"Πολλά από τα ονόματα που χρησιμοποιούνται από εταιρίες για να ξεχωρίσουν τα "
+"προϊόντα και τις υπηρεσίες είναι σήματα κατατεθέν. Όπου αυτά τα ονόματα "
+"εμφανίζονται στην τεκμηρίωση MATE, και τα μέλη της ομάδας τεκμηρίωσης MATE "
+"έχουν γνώση αυτών, τότε αυτά αναγράφονται με κεφαλαίους χαρακτήρες ή με "
+"αρχικούς κεφαλαίους χαρακτήρες."
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+"Η ΤΕΚΜΗΡΙΩΣΗ ΑΥΤΗ ΠΑΡΕΧΕΤΑΙ \"ΩΣ ΕΧΕΙ\", ΧΩΡΙΣ ΚΑΜΙΑ ΕΓΓΥΗΣΗ ΟΤΙ ΜΠΟΡΕΙ ΝΑ "
+"ΕΞΥΠΗΡΕΤΗΣΕΙ ΚΑΠΟΙΟ ΣΚΟΠΟ Η ΟΤΙ ΕΙΝΑΙ ΧΩΡΙΣ ΣΦΑΛΜΑ. ΟΛΟΚΛΗΡΗ Η ΕΥΘΥΝΗ ΓΙΑ "
+"ΤΗΝ ΠΟΙΟΤΗΤΑ, ΑΚΡΙΒΕΙΑ ΚΑΙ ΛΕΙΤΟΥΡΓΙΚΟΤΗΤΑ ΤΗΣ ΤΕΚΜΗΡΙΩΣΗΣ Ή ΠΑΡΑΛΛΑΓΩΝ "
+"ΑΥΤΗΣ ΑΝΗΚΕΙ ΣΕ ΕΣΑΣ. ΕΑΝ Η ΤΕΚΜΗΡΙΩΣΗ ΑΥΤΗ Ή ΠΑΡΑΛΛΑΓΗ ΑΥΤΗΣ ΕΙΝΑΙ ΛΑΘΟΣ "
+"ΚΑΤΑ ΚΑΠΟΙΟ ΤΡΟΠΟ ΕΣΕΙΣ ΑΝΑΛΑΜΒΑΝΕΤΕ ΤΗΝ ΕΥΘΥΝΗ ΤΗΣ ΔΙΟΡΘΩΣΗΣ. Η ΑΠΑΛΛΑΓΗ "
+"ΕΥΘΥΝΗΣ ΠΟΥ ΣΥΝΟΔΕΥΕΙ ΑΥΤΗ ΤΗΝ ΤΕΚΜΗΡΙΩΣΗ ΕΙΝΑΙ ΑΝΑΠΟΣΠΑΣΤΟ ΚΟΜΜΑΤΙ ΑΥΤΗΣ. "
+"ΚΑΜΙΑ ΧΡΗΣΗ ΤΗΣ ΤΕΚΜΗΡΙΩΣΗΣ Ή ΠΑΡΑΛΛΑΓΩΝ ΑΥΤΗΣ ΔΕΝ ΕΠΙΤΡΕΠΕΤΑΙ ΠΑΡΑ ΜΟΝΟ ΕΑΝ"
+" ΣΥΝΟΔΕΥΕΤΑΙ ΑΠΟ ΤΗΝ ΑΠΑΛΛΑΓΗ ΕΥΘΥΝΗΣ."
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+"ΣΕ ΚΑΜΙΑ ΠΕΡΙΠΤΩΣΗ ΚΑΙ ΥΠΟ ΚΑΜΙΑ ΝΟΜΙΚΗ ΣΥΝΘΗΚΗ, ΕΙΤΕ ΜΕΣΩ ΣΥΜΒΟΛΑΙΩΝ Ή "
+"ΑΛΛΙΩΣ, ΔΕΝ ΕΥΘΥΝΟΝΤΑΙ Ο ΣΥΓΓΡΑΦΕΑΣ, Ο ΔΙΑΝΟΜΕΑΣ, Η ΑΛΛΟΣ ΣΥΝΥΠΕΥΘΥΝΟΣ ΓΙΑ "
+"ΤΗΝ ΣΥΓΓΡΑΦΗ ΤΗΣ ΤΕΚΜΗΡΙΩΣΗΣ, ΓΙΑ ΕΜΜΕΣΕΣ Η ΑΜΕΣΕΣ, ΤΥΧΑΙΕΣ Ή ΜΗ ΖΗΜΙΕΣ "
+"ΠΑΝΤΩΣ ΦΥΣΕΩΣ ΠΟΥ ΠΡΟΕΡΧΟΝΤΑΙ ΑΠΟ ΤΗΝ ΧΡΗΣΗ ΤΗΣ ΤΕΚΜΗΡΙΩΣΗΣ ΚΑΙ/Ή ΠΑΡΑΛΛΑΓΩΝ"
+" ΑΥΤΗΣ ΑΚΟΜΑ ΚΑΙ ΕΑΝ ΕΧΕΙ ΥΠΑΡΞΕΙ ΠΡΟΕΙΔΟΠΟΙΗΣΗ ΓΙΑ ΤΗΝ ΠΙΘΑΝΟΤΗΤΑ ΥΠΑΡΞΗΣ "
+"ΤΕΤΟΙΩΝ ΖΗΜΙΩΝ."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
+"Η οθόνη προσβασιμότητας πληκτρολογίου σας δείχνει την κατάσταση των "
+"χαρακτηριστικών προσβασιμότητας πληκτρολογίου όταν αυτά χρησιμοποιούνται. "
+"Για παράδειγμα, μπορείτε να δείτε ποια πλήκτρα τροποποίησης είναι ενεργά και"
+" ποια κουμπιά του ποντικιού πιέζονται μέσω του πληκτρολογίου."
diff -pruN 1.24.0-1/baobab/help/el/index.docbook 1.26.0-0ubuntu1/baobab/help/el/index.docbook
--- 1.24.0-1/baobab/help/el/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/el/index.docbook	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="el">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername>Έργο Τεκμηρίωσης MATE</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername>Έργο τεκμηρίωσης GNOME</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title>Ανάδραση</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>Εισαγωγή</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title>Για να ξεκινήσετε</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Χρήση</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Προτιμήσεις</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/el/legal.xml 1.26.0-0ubuntu1/baobab/help/el/legal.xml
--- 1.24.0-1/baobab/help/el/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/el/legal.xml	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>Επιτρέπεται η αντιγραφή, η διανομή και / ή η τροποποίηση αυτού του εγγράφου σύμφωνα με τους όρους της Άδειας Τεκμηρίωσης ελευθέρου λογισμικού GNU (GFDL), Έκδοσης 1.1 ή οποιασδήποτε μεταγενέστερης έκδοσης που δημοσιεύεται από το Ίδρυμα Ελεύθερου Λογισμικού χωρίς Μεταβλητές Ενότητες, χωρίς Κείμενα Προσωρινού Εξώφυλλου και Κανένα κείμενο πίσω. Μπορείτε να βρείτε ένα αντίγραφο του GFDL σε αυτό <ulink type="help" url="help:fdl">σύνδεσμος</ulink> ή στο αρχείο COPYING-DOCS που διανέμεται με αυτό το εγχειρίδιο.</para>
+         <para>Αυτή η τεκμηρίωση είναι μέρος της συλλογής τεκμηρίωσης του MATE όπως διανέμεται υπό τους όρους του GFDL. Εάν επιθυμείτε να διανείμετε αυτή την τεκμηρίωση ξεχωριστά από την συλλογή, μπορείτε να το κάνετε εάν η τεκμηρίωση συνοδεύεται από αντίγραφο της άδειας (GFDL) όπως περιγράφεται στον τομέα 6 της άδειας.</para>
+
+	<para>Πολλά από τα ονόματα που χρησιμοποιούνται από εταιρίες για να ξεχωρίσουν τα προϊόντα και τις υπηρεσίες είναι σήματα κατατεθέν. Όπου αυτά τα ονόματα εμφανίζονται στην τεκμηρίωση MATE, και τα μέλη της ομάδας τεκμηρίωσης MATE έχουν γνώση αυτών, τότε αυτά αναγράφονται με κεφαλαίους χαρακτήρες ή με αρχικούς κεφαλαίους χαρακτήρες.</para>
+
+	<para>Η οθόνη προσβασιμότητας πληκτρολογίου σας δείχνει την κατάσταση των χαρακτηριστικών προσβασιμότητας πληκτρολογίου όταν αυτά χρησιμοποιούνται. Για παράδειγμα, μπορείτε να δείτε ποια πλήκτρα τροποποίησης είναι ενεργά και ποια κουμπιά του ποντικιού πιέζονται μέσω του πληκτρολογίου.</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/en_AU/en_AU.po 1.26.0-0ubuntu1/baobab/help/en_AU/en_AU.po
--- 1.24.0-1/baobab/help/en_AU/en_AU.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/en_AU/en_AU.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,10 +1,11 @@
+# 
 # Translators:
 # Michael Findlay <translate@cobber-linux.org>, 2018
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Michael Findlay <translate@cobber-linux.org>, 2018\n"
 "Language-Team: English (Australia) (https://www.transifex.com/mate/teams/13566/en_AU/)\n"
@@ -33,7 +34,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -53,80 +54,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -200,7 +132,7 @@ msgstr "Introduction"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -228,7 +160,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -260,14 +192,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -285,7 +217,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -362,7 +294,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -455,7 +387,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -493,7 +425,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -741,3 +673,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/en_AU/index.docbook 1.26.0-0ubuntu1/baobab/help/en_AU/index.docbook
--- 1.24.0-1/baobab/help/en_AU/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/en_AU/index.docbook	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="en-AU">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>Introduction</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Usage</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Preferences</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/en_AU/legal.xml 1.26.0-0ubuntu1/baobab/help/en_AU/legal.xml
--- 1.24.0-1/baobab/help/en_AU/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/en_AU/legal.xml	2021-08-05 19:46:18.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/en_CA/en_CA.po 1.26.0-0ubuntu1/baobab/help/en_CA/en_CA.po
--- 1.24.0-1/baobab/help/en_CA/en_CA.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/en_CA/en_CA.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,10 +1,11 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
 "Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
 "Language-Team: English (Canada) (https://www.transifex.com/mate/teams/13566/en_CA/)\n"
@@ -33,7 +34,7 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 msgstr ""
 
 #. (itstool) path: articleinfo/copyright
@@ -53,80 +54,11 @@ msgstr ""
 msgid "GNOME Documentation Project"
 msgstr ""
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -200,7 +132,7 @@ msgstr ""
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -228,7 +160,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -260,14 +192,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -285,7 +217,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -362,7 +294,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -455,7 +387,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -493,7 +425,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -741,3 +673,61 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
diff -pruN 1.24.0-1/baobab/help/en_CA/index.docbook 1.26.0-0ubuntu1/baobab/help/en_CA/index.docbook
--- 1.24.0-1/baobab/help/en_CA/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/en_CA/index.docbook	2021-08-05 19:46:19.000000000 +0000
@@ -0,0 +1,464 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="en-CA">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"> 
+      <year>2015-2021</year>
+      <holder>MATE Documentation Project</holder>
+    </copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername lang="en">MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername lang="en">GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title lang="en">Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title lang="en">Introduction</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title lang="en">Usage</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Preferences</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of the partial tree 
+      to be represented. The folders can also be navigated from the 
+      <guilabel>ringschart</guilabel> itself. If you click with the left
+      button of your mouse inside a folder, you'll move deeper by 
+      setting the root of the graphic to that folder. If you press the 
+      middle button (no matter the place as long as you click inside the 
+      <guilabel>ringschart</guilabel> frame) you'll get the opposite 
+      behavior, going back one step in the hierarchy.</para>
+
+    <para lang="en">The percentage of its parent's radius that is used by a given
+      folder is directly proportional to the relation between its own
+      size and its parent's. It's easy to understand that the size of 
+      a folder is equal or smaller than its parent's. Although only 
+      directories are shown in this graphical representation, files are 
+      taken into account to calculate the amount of space occupied by 
+      folders.</para>
+  </sect1>
+</article>
diff -pruN 1.24.0-1/baobab/help/en_CA/legal.xml 1.26.0-0ubuntu1/baobab/help/en_CA/legal.xml
--- 1.24.0-1/baobab/help/en_CA/legal.xml	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/en_CA/legal.xml	2021-08-05 19:46:19.000000000 +0000
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<legalnotice id="legalnotice">
+	<para>
+	  Permission is granted to copy, distribute and/or modify this
+	  document under the terms of the GNU Free Documentation
+	  License (GFDL), Version 1.1 or any later version published
+	  by the Free Software Foundation with no Invariant Sections,
+	  no Front-Cover Texts, and no Back-Cover Texts.  You can find
+	  a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS
+	  distributed with this manual.
+         </para>
+         <para> This manual is part of a collection of MATE manuals
+          distributed under the GFDL.  If you want to distribute this
+          manual separately from the collection, you can do so by
+          adding a copy of the license to the manual, as described in
+          section 6 of the license.
+	</para>
+
+	<para>
+	  Many of the names used by companies to distinguish their
+	  products and services are claimed as trademarks. Where those
+	  names appear in any MATE documentation, and the members of
+	  the MATE Documentation Project are made aware of those
+	  trademarks, then the names are in capital letters or initial
+	  capital letters.
+	</para>
+
+	<para>
+	  DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED
+	  UNDER  THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE
+	  WITH THE FURTHER UNDERSTANDING THAT:
+
+	  <orderedlist>
+		<listitem>
+		  <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS,
+                    WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+                    IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
+                    THAT THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR
+                    A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
+                    RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE
+                    OF THE DOCUMENT OR MODIFIED VERSION OF THE
+                    DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR
+                    MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT,
+                    YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY
+                    CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
+                    SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+                    OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
+                    LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED
+                    VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER
+                    EXCEPT UNDER THIS DISCLAIMER; AND
+		  </para>
+		</listitem>
+		<listitem>
+		  <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL
+                       THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE),
+                       CONTRACT, OR OTHERWISE, SHALL THE AUTHOR,
+                       INITIAL WRITER, ANY CONTRIBUTOR, OR ANY
+                       DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION
+                       OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH
+                       PARTIES, BE LIABLE TO ANY PERSON FOR ANY
+                       DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
+                       CONSEQUENTIAL DAMAGES OF ANY CHARACTER
+                       INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS
+                       OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+                       MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR
+                       LOSSES ARISING OUT OF OR RELATING TO USE OF THE
+                       DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT,
+                       EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
+                       THE POSSIBILITY OF SUCH DAMAGES.
+		  </para>
+		</listitem>
+	  </orderedlist>
+	</para>
+  </legalnotice>
diff -pruN 1.24.0-1/baobab/help/en_GB/en_GB.po 1.26.0-0ubuntu1/baobab/help/en_GB/en_GB.po
--- 1.24.0-1/baobab/help/en_GB/en_GB.po	2020-02-10 01:39:11.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/en_GB/en_GB.po	2021-08-05 19:43:41.000000000 +0000
@@ -1,14 +1,15 @@
+# 
 # Translators:
 # Stefano Karapetsas <stefano@karapetsas.com>, 2018
 # Martin Wimpress <code@flexion.org>, 2018
-# Andi Chandler <andi@gowling.com>, 2018
+# Andi Chandler <andi@gowling.com>, 2021
 # 
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2020-01-13 16:47+0100\n"
+"POT-Creation-Date: 2021-06-04 20:34+0200\n"
 "PO-Revision-Date: 2018-09-13 09:22+0000\n"
-"Last-Translator: Andi Chandler <andi@gowling.com>, 2018\n"
+"Last-Translator: Andi Chandler <andi@gowling.com>, 2021\n"
 "Language-Team: English (United Kingdom) (https://www.transifex.com/mate/teams/13566/en_GB/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -35,8 +36,8 @@ msgstr ""
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:30
-msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
-msgstr ""
+msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
+msgstr "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
 
 #. (itstool) path: articleinfo/copyright
 #: C/index.docbook:34
@@ -55,95 +56,11 @@ msgstr "MATE Documentation Project"
 msgid "GNOME Documentation Project"
 msgstr "GNOME Documentation Project"
 
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:2
-msgid ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-msgstr ""
-"Permission is granted to copy, distribute and/or modify this document under "
-"the terms of the GNU Free Documentation Licence (GFDL), Version 1.1 or any "
-"later version published by the Free Software Foundation with no Invariant "
-"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
-" of the GFDL at this <ulink type=\"help\" url=\"help:fdl\">link</ulink> or "
-"in the file COPYING-DOCS distributed with this manual."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:12 C/legal.xml:12
-msgid ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the license to the manual, as described in"
-" section 6 of the license."
-msgstr ""
-"This manual is part of a collection of MATE manuals distributed under the "
-"GFDL. If you want to distribute this manual separately from the collection, "
-"you can do so by adding a copy of the licence to the manual, as described in"
-" section 6 of the license."
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:19 C/legal.xml:19
-msgid ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-msgstr ""
-"Many of the names used by companies to distinguish their products and "
-"services are claimed as trademarks. Where those names appear in any MATE "
-"documentation, and the members of the MATE Documentation Project are made "
-"aware of those trademarks, then the names are in capital letters or initial "
-"capital letters."
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:35 C/legal.xml:35
-msgid ""
-"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
-"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
-"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
-"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
-"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
-"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
-"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
-"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
-"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
-"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
-"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
-msgstr ""
-
-#. (itstool) path: listitem/para
-#: C/index.docbook:55 C/legal.xml:55
-msgid ""
-"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
-" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
-"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
-"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
-"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
-"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
-"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
-" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
-"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
-" POSSIBILITY OF SUCH DAMAGES."
-msgstr ""
-
-#. (itstool) path: legalnotice/para
-#: C/index.docbook:28 C/legal.xml:28
-msgid ""
-"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
-"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
-"<_:orderedlist-1/>"
-msgstr ""
-
 #. (itstool) path: authorgroup/author
 #: C/index.docbook:56
 msgid ""
-"<surname>MATE-Dokumentationsteam</surname> <affiliation> <orgname>Mate "
-"desktop</orgname> </affiliation>"
+"<surname>MATE Documentation Team</surname> <affiliation> <orgname>MATE "
+"Desktop</orgname> </affiliation>"
 msgstr ""
 
 #. (itstool) path: authorgroup/author
@@ -193,7 +110,7 @@ msgstr ""
 #. (itstool) path: legalnotice/title
 #: C/index.docbook:121
 msgid "Feedback"
-msgstr ""
+msgstr "Feedback"
 
 #. (itstool) path: legalnotice/para
 #: C/index.docbook:122
@@ -217,7 +134,7 @@ msgstr "Introduction"
 #: C/index.docbook:140
 msgid ""
 "<application>Disk Usage Analyzer</application> is a graphical, menu-driven "
-"application to analyze disk usage in any Mate environment. <application>Disk"
+"application to analyze disk usage in any MATE environment. <application>Disk"
 " Usage Analyzer</application> can easily scan either the whole filesystem "
 "tree, or a specific user-requested directory branch (local or remote)."
 msgstr ""
@@ -245,7 +162,7 @@ msgstr ""
 #. (itstool) path: listitem/para
 #: C/index.docbook:157
 msgid ""
-"from Mate menu "
+"from MATE menu "
 "<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;"
 msgstr ""
 
@@ -277,14 +194,14 @@ msgstr ""
 #. (itstool) path: sect1/para
 #: C/index.docbook:170
 msgid ""
-"If launched from Mate menu, <application>Disk Usage Analyzer</application> "
+"If launched from MATE menu, <application>Disk Usage Analyzer</application> "
 "starts and remains in a stand-by state, waiting for user action."
 msgstr ""
 
 #. (itstool) path: sect1/para
 #: C/index.docbook:171
 msgid ""
-"When you start <application>Disk Usage Analyzer</application> from the Mate "
+"When you start <application>Disk Usage Analyzer</application> from the MATE "
 "Menu, the following window is displayed."
 msgstr ""
 
@@ -302,7 +219,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_window.png' "
-"md5='100896a46f48130752a9d88ac516fa3a'"
+"md5='381c84c892310cbc49afc0d5e90ad555'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -379,7 +296,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_fullscan.png' "
-"md5='17895f3407c9282a55a324642fd20e0b'"
+"md5='c36d630b13ddb1e1712125dc34262229'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -472,7 +389,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_remote.png' "
-"md5='b11c5d1001dfbab2628df824a2660643'"
+"md5='b8d834a11cf8f227e1aefdee167a1a67'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -510,7 +427,7 @@ msgstr ""
 msgctxt "_"
 msgid ""
 "external ref='figures/baobab_prefs.png' "
-"md5='94dbb42d65cc8c32e50ac87bf9932811'"
+"md5='64e7c2ce647708579f9cc749c63aeca5'"
 msgstr ""
 
 #. (itstool) path: screenshot/mediaobject
@@ -758,3 +675,100 @@ msgid ""
 " of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
 "with this manual."
 msgstr ""
+"Permission is granted to copy, distribute and/or modify this document under "
+"the terms of the GNU Free Documentation Licence (GFDL), Version 1.1 or any "
+"later version published by the Free Software Foundation with no Invariant "
+"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy"
+" of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed "
+"with this manual."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:12
+msgid ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the license to the manual, as described in"
+" section 6 of the license."
+msgstr ""
+"This manual is part of a collection of MATE manuals distributed under the "
+"GFDL. If you want to distribute this manual separately from the collection, "
+"you can do so by adding a copy of the licence to the manual, as described in"
+" section 6 of the license."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:19
+msgid ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+msgstr ""
+"Many of the names used by companies to distinguish their products and "
+"services are claimed as trademarks. Where those names appear in any MATE "
+"documentation, and the members of the MATE Documentation Project are made "
+"aware of those trademarks, then the names are in capital letters or initial "
+"capital letters."
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:35
+msgid ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+msgstr ""
+"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, "
+"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT "
+"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS "
+"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE "
+"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR "
+"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR "
+"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL "
+"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY "
+"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN "
+"ESSENTIAL PART OF THIS LICENCE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
+"OF THE DOCUMENT IS AUTHORISED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
+
+#. (itstool) path: listitem/para
+#: C/legal.xml:55
+msgid ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+msgstr ""
+"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING"
+" NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY "
+"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE "
+"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON "
+"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF "
+"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, "
+"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES"
+" OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED "
+"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
+" POSSIBILITY OF SUCH DAMAGES."
+
+#. (itstool) path: legalnotice/para
+#: C/legal.xml:28
+msgid ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
+msgstr ""
+"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS "
+"OF THE GNU FREE DOCUMENTATION LICENCE WITH THE FURTHER UNDERSTANDING THAT: "
+"<_:orderedlist-1/>"
diff -pruN 1.24.0-1/baobab/help/en_GB/index.docbook 1.26.0-0ubuntu1/baobab/help/en_GB/index.docbook
--- 1.24.0-1/baobab/help/en_GB/index.docbook	1970-01-01 00:00:00.000000000 +0000
+++ 1.26.0-0ubuntu1/baobab/help/en_GB/index.docbook	2021-08-05 19:46:19.000000000 +0000
@@ -0,0 +1,461 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY appversion "1.10">
+<!ENTITY manrevision "1.10">
+<!ENTITY date "July 2015">
+<!ENTITY app "Disk Usage Analyzer">
+]>
+<!-- 
+      (Do not remove this comment block.)
+  Maintained by the MATE Documentation Project
+  http://wiki.mate-desktop.org/dev-doc:doc-team-guide
+  Template version: 2.0 beta
+  Template last modified Apr 11, 2002
+  
+-->
+<!-- =============Document Header ============================= -->
+<article id="index" lang="en-GB">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+  <articleinfo> 
+    <title lang="en">Disk Usage Analyzer Manual</title>
+
+    <abstract role="description">
+      <para lang="en">Disk Usage Analyzer is a graphical, menu-driven viewer that you can
+      use to view and monitor your disk usage and folder structure.</para>
+    </abstract>
+
+    <copyright lang="en"><year>2015-2021</year> <holder>MATE Documentation Project</holder></copyright>
+    <copyright lang="en"> 
+      <year>2006</year> 
+      <holder>Fabio Marzocca</holder> 
+    </copyright> 
+<!-- translators: uncomment this:
+
+  <copyright>
+   <year>2002</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+    <publisher> 
+      <publishername>MATE Documentation Project</publishername>
+    </publisher> 
+    <publisher> 
+      <publishername>GNOME Documentation Project</publishername>
+    </publisher> 
+
+   
+
+   <authorgroup>
+      <author role="maintainer" lang="en"> 
+	<surname>MATE Documentation Team</surname>
+	<affiliation> 
+	  <orgname>MATE Desktop</orgname> 
+	</affiliation> 
+      </author>
+   <author lang="en"> 
+		<firstname>Fabio</firstname> 
+		<surname>Marzocca</surname> 
+		<affiliation> 
+	  	<orgname>GNOME Documentation Project</orgname> 
+	  	<address> <email>thesaltydog@gmail.com</email> </address> 
+		</affiliation> 
+   </author> 
+
+   <author role="maintainer" lang="en">
+   	<firstname>Fabio</firstname>
+	<surname>Marzocca</surname>
+	<affiliation>
+	  <address><email>thesaltydog@gmail.com</email></address>
+	</affiliation>
+   </author>
+      
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+   <othercredit role="translator">
+		<firstname>Latin</firstname> 
+		<surname>Translator 1</surname> 
+		<affiliation> 
+	  	<orgname>Latin Translation Team</orgname> 
+	  	<address> <email>translator@gnome.org</email> </address> 
+		</affiliation>
+		<contrib>Latin translation</contrib>
+   </othercredit>
+-->
+    </authorgroup>
+
+	<releaseinfo revision="1.10" role="review">
+	</releaseinfo>
+
+    <revhistory>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.10</revnumber> 
+		<date>July 2015</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Wolfgang Ulbrich
+	  		</para>
+	  		<para role="publisher" lang="en">MATE Documentation Project</para>
+		</revdescription> 
+      </revision>
+      <revision lang="en"> 
+		<revnumber>Disk Usage Analyzer Manual 1.0</revnumber> 
+		<date>April 2006</date> 
+		<revdescription> 
+	  		<para role="author" lang="en">Emmanuele Bassi
+	    		<email>ebassi@gmail.com</email>
+	  		</para>
+	  		<para role="publisher" lang="en">GNOME Documentation Project</para>
+		</revdescription> 
+      </revision>
+    </revhistory> 
+
+    <releaseinfo lang="en">This manual describes version 1.10 of Disk Usage Analyzer.</releaseinfo> 
+    
+    <legalnotice> 
+      <title>Feedback</title> 
+      <para lang="en">To report a bug or make a suggestion regarding the Disk Usage Analyzer application or
+	this manual, follow the directions in the 
+	<ulink url="help:mate-user-guide/feedback" type="help">MATE Feedback Page</ulink>. 
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice> 
+  </articleinfo> 
+
+  <indexterm lang="en"> 
+    <primary>Disk Usage Analyzer</primary>
+  </indexterm> 
+
+<!-- ============= Document Body ============================= -->
+<!-- ============= Introduction ============================== -->
+
+  <sect1 id="baobab-introduction"> 
+    <title>Introduction</title> 
+
+      <para lang="en"><application>Disk Usage Analyzer</application> is a graphical, menu-driven
+      application to analyze disk usage in any MATE environment. <application>Disk Usage Analyzer</application> can easily scan
+       either the whole filesystem tree, or a specific user-requested directory 
+       branch (local or remote). </para>
+       <para lang="en">It also auto-detects in real-time any changes 
+       made to your home directory as far as any mounted/unmounted device. 
+       <application>Disk Usage Analyzer</application> also provides a full graphical treemap 
+       window for each selected folder.</para>
+
+  </sect1>
+
+<!-- ================ Getting Started ================================ -->
+	<sect1 id="baobab-getting-started">
+	<title lang="en">Getting Started</title>
+
+    <para lang="en"><application>Disk Usage Analyzer</application> can be started in three ways:</para>
+	 <itemizedlist>
+    <listitem><para lang="en">from MATE menu <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem></menuchoice>;</para>
+    		</listitem>
+    <listitem><para lang="en">from a terminal window;</para>
+    		</listitem>
+    <listitem><para lang="en">from Caja "Open with..." ;</para>
+    		</listitem>
+    </itemizedlist> 
+
+
+<para lang="en">If you want to start <application>Disk Usage Analyzer</application> from a terminal window, just type:</para> 
+  
+<para lang="en"><command>mate-disk-usage-analyzer &lt;full_path_to_a_directory&gt;</command>, then press <keycap>Return</keycap>.</para>  
+<para/> 
+	<para lang="en">If launched from MATE menu, <application>Disk Usage Analyzer</application> starts and remains in a stand-by state, waiting for user action.</para> 
+    <para lang="en">When you start <application>Disk Usage Analyzer</application> from the MATE Menu, the following window is displayed.</para>
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fig"> 
+	<title lang="en">Disk Usage Analyzer Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_window.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer main window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+
+<para lang="en">The user can then:</para>
+	<itemizedlist>
+    <listitem><para lang="en">start a full filesystem scan;</para>
+    		</listitem>
+    <listitem><para lang="en">select a specific local directory branch to scan</para>
+    		</listitem>
+    <listitem><para lang="en">select a remote server and folder to scan</para>
+    		</listitem>
+    <listitem><para lang="en">set preferences</para>
+    		</listitem>
+	</itemizedlist>
+
+
+</sect1>
+
+<!-- ================ Usage ================================ -->
+
+  <sect1 id="baobab-usage"> 
+    <title>Usage</title>
+
+    <sect2 id="baobab-fullscan">
+      <title lang="en">Full filesystem scan</title>
+        <para lang="en">To start a full filesystem scan select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Filesystem</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Filesystem</guibutton> toolbar button.</para>
+
+	<para lang="en">When the scanning process ends up, you will get the full tree of your filesystem,
+	like the one in the next Figure.</para>    
+
+    <!-- ==== Figure ==== -->
+      <figure id="baobab-fullscan-fig"> 
+	<title lang="en">Disk Usage Analyzer Full filesystem scan</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_fullscan.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Shows Disk Usage Analyzer full filesystem scan window. Contains menubar, display area, scrollbars, and statusbar. </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    	<note><para lang="en">When you run a full filesystem scan, 
+	<application>Disk Usage Analyzer</application> window will start drawing the tree as soon 
+	as the thread starts scanning the filesystem. If any large partition is mounted 
+	on the filesystem, that will be scanned too.</para></note>
+    
+    <para lang="en"><application>Disk Usage Analyzer</application> will display sizes in the 
+    directory tree as allocated space. This means that the displayed sizes refer 
+    to the actual disk usage and not to the apparent directory size. 
+    If you want to view the apparent file size, uncheck <menuchoice><guimenu>View</guimenu><guimenuitem>Allocated Space</guimenuitem></menuchoice> .</para>
+    
+    <warning><para lang="en"><application>Disk Usage Analyzer</application> will not count the /proc dir, nor
+    any file size that is not related to a "plain" file, so symlinks, character blocks,
+    device blocks will not be part of the directory size.</para></warning>
+   
+    <para lang="en">Hard-links are managed in a different way: this first hardlink is 
+    counted as a normal file, while the subsequent links to the same inode device 
+    are not counted in the total, but highlighted in the right-hand column of the 
+    window.</para>
+        </sect2>
+	
+	<sect2 id="baobab-folderscan">
+      <title lang="en">Single folder scan</title>
+
+    <para lang="en">To start a single folder scan select 
+    <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Folder...</guimenuitem></menuchoice> 
+    from the menu, or press on the <guibutton>Scan Folder</guibutton> toolbar button.</para>
+
+	</sect2>
+
+	<sect2 id="baobab-remotescan">
+      <title lang="en">Remote scan</title>
+      
+      <para lang="en">If you need to scan a remote server-folder, just click on the toolbar 
+      icon <guibutton>Scan Remote Folder</guibutton> or select <menuchoice><guimenu>Analyzer</guimenu><guimenuitem>Scan Remote Folder</guimenuitem></menuchoice>
+      from the menu and you will get the following dialog box. <application>Disk Usage Analyzer</application> 
+      can connect to a server through ssh, ftp, smb, http and https.</para>
+ 
+     <!-- ==== Figure ==== -->
+      <figure id="baobab-remote-fig"> 
+        <title lang="en">Disk Usage Analyzer Remote folder scan</title> 
+		<screenshot> 
+	 	 <mediaobject lang="en"> 
+	  	  <imageobject>
+	   	 <imagedata fileref="figures/baobab_remote.png" format="PNG"/> 
+	   	 </imageobject>
+	   	 <textobject> 
+	    	  <phrase>Shows Disk Usage Analyzer remote folder dialog window. </phrase> 
+	   	 </textobject> 
+	 	 </mediaobject> 
+		</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+   
+	</sect2> 
+
+  </sect1>
+
+
+<!-- ============= Preferences =============================== -->
+  <sect1 id="baobab-preferences">
+    <title>Preferences</title>
+    
+    <para lang="en">To change the <application>Disk Usage Analyzer</application> application
+    preferences, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.</para>
+ 
+   <!-- ==== Figure ==== -->
+      <figure id="baobab-preferences-fig"> 
+      	<title lang="en">Disk Usage Analyzer Preferences Window</title> 
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_prefs.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Preferences window </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+  <sect2 id="baobab-scan-preferences">
+      <title lang="en">Select devices to be scanned</title>
+  <para lang="en">In the first part of the Preferences window, all detected mounted devices 
+  are listed. Click on the checkbox to include/exclude the partition into the 
+  filesystem scanning operations.  </para>
+  <note><para lang="en">The device mounted on "/" cannot be excluded from the scan.</para></note>
+  </sect2>
+ 
+   <sect2 id="baobab-monitor-preferences">
+      <title lang="en">Enable monitoring of home</title>
+      <para lang="en">If this option is checked, <application>Disk Usage Analyzer</application> will 
+      constantly monitor any external changes to home directory and warn 
+      the user if a file is added/removed.</para>  
+   </sect2>  
+	</sect1>
+<!-- ================ Treemaps ================================ -->
+
+  <sect1 id="baobab-treemaps"> 
+  <title lang="en">Treemaps</title>
+
+    <para lang="en"><guilabel>Treemap</guilabel> concepts have been developed by Ben Shneiderman in the '90s.
+    Read his <ulink type="http" url="http://www.cs.umd.edu/hcil/treemap-history/index.shtml">vision on treemaps</ulink>.</para>
+    
+       <!-- ==== Figure ==== -->
+      <figure id="baobab-treemap-fig"> 
+        <title lang="en">Disk Usage Analyzer Treemap Window</title>
+	<screenshot> 
+	  <mediaobject lang="en"> 
+	    <imageobject>
+	    <imagedata fileref="figures/baobab_treemaps.png" format="PNG"/> 
+	    </imageobject>
+	    <textobject> 
+	      <phrase>Treemap's theory. Shows 2 treemap diagrams </phrase> 
+	    </textobject> 
+	  </mediaobject> 
+	</screenshot> 
+      </figure>
+    <!-- ==== End of Figure ==== -->
+  
+    
+    <para lang="en">Figure shows an example of treemap's theory. Each node 
+    (as shown in the tree diagram) has a name (a letter) and an associated size 
+    (a number). The size of leaves may represent for instance the size of individual 
+    files, the size of non-leaf nodes is the sum of the sizes of its children.</para> 
+    
+    <para lang="en">The treemap is constructed via recursive subdivision of the initial rectangle. 
+    The size of each sub-rectangle corresponds to the size of the node. 
+    The direction of subdivision alternates per level: first horizontally, 
+    next vertically, etcetera. As a result, the initial rectangle is partitioned 
+    into smaller rectangles, such that the size of each rectangle reflects the size 
+    of the leaf. The structure of the tree is also reflected in the treemap, 
+    as a result of its construction. Color and annotation can
+	be used to give extra information about the leaves.</para>
+
+	<note><para lang="en">Treemaps are very effective when size is the most important feature to be 
+	displayed.</para></note>
+  </sect1>
+  <!-- ================ Ringschart ================================ -->
+
+  <sect1 id="baobab-ringschart"> 
+  <title lang="en">Ringschart</title>
+
+    <para lang="en"><guilabel>Ringschart</guilabel> is a graphical
+      representation of the disk usage by a concrete folder. When
+      launching the application, it is notified the usage of
+      the file system as it can be seen in the next figure:</para>
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-filesystem_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the file system usage</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart1.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After launching the application, it is showed the
+	    file system usage. Graphical representation on the right. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+
+    <para lang="en">When you start scanning a folder, the tree of subfolders is
+      created and listed on the left side. Each row contains
+      information for the name, how much space it is taking up
+      (percentage and size in KB, MB or GB) and the number of items
+      (adding files and directories). When this process ends up,
+      the <guilabel>Ringschart</guilabel> is drawn on the right
+      side. If you stop it before it has been completed, only a
+      partial representation is done based on the directories whose
+      usage was computed.</para>
+
+
+    <!-- ==== Figure ==== -->
+    <figure id="baobab-folder_scan"> 
+      <title lang="en">Disk Usage Analyzer showing a ringschart with the usage of a folder</title>
+      <screenshot> 
+	<mediaobject lang="en"> 
+	  <imageobject>
+	    <imagedata fileref="figures/baobab_ringschart2.png" format="PNG"/> 
+	  </imageobject>
+	  <textobject> 
+	    <phrase>After scanning a folder. </phrase> 
+	  </textobject> 
+	</mediaobject> 
+      </screenshot> 
+    </figure>
+    <!-- ==== End of Figure ==== -->
+    
+    <para lang="en">The <guilabel>Ringschart</guilabel> is composed of a set of 
+      nested rings around a central circle. This circle symbolizes the
+      root folder of the partial tree (that is, the folder that the 
+      user has selected for scanning). Each ring represents a level in
+      the partial tree, so i.e. the subfolders of the root folder will 
+      be represented in the first ring, and deeper levels in the tree 
+      correspond to outer rings in the chart. Each subfolder is 
+      represented by a sector of the ring, its angle being proportional 
+      to the size of the folder's contents, and painted with a different
+      color to ease visualization. Up to five levels can be drawn; in 
+      case that a folder in that last fifth level contains even more 
+      subfolders, this situation will be pointed by the presence of a 
+      black curve close to the edge of that folder's ring sector. When a
+      folder with no further subfolders is selected to be the root of 
+      the partial tree, only the inner circle will be drawn. When the 
+      mouse pointer hovers one of the folders in the graphic, it will be
+      highlighted and a tooltip will appear with information about its
+      name and size. If there are any subfolders, small gray tooltips
+      will appear, indicating their names. It's possible that not all of
+      the subfolders' names are displayed, to avoid overlappings.</para>
+
+    <para lang="en">You can go up and down the rows in the list (optionally 
+      expanding those with subfolders), the graphic representation will 
+      change using the selected folder as the root of t